We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ef6be commit cc6d216Copy full SHA for cc6d216
src/components/nestedObject.tsx
@@ -56,7 +56,10 @@ export function RenderNestedObject({
56
<div>
57
{typeof prop.type === 'string' ? (
58
<Fragment>
59
- <code>{prop.name}{!prop.required ? '?' : ''}: </code>
+ <code>
60
+ {prop.name}
61
+ {!prop.required ? '?' : ''}:{' '}
62
+ </code>
63
<code>{codeToJsx(prop.type, language)},</code>
64
</Fragment>
65
) : (
0 commit comments