Props: #8143 repro

This commit is contained in:
Michael Shilman 2020-02-14 17:07:47 +08:00
parent 8219af19d0
commit e3927d9cea
4 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,24 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 8143-ts-react-fc-generics 1`] = `
"import React from 'react';
export const Text = ({
padding = '0',
margin
}) => React.createElement(React.Fragment, null, \\"Text\\");
export const component = Text;
Text.__docgenInfo = {
\\"description\\": \\"\\",
\\"methods\\": [],
\\"displayName\\": \\"Text\\",
\\"props\\": {
\\"padding\\": {
\\"defaultValue\\": {
\\"value\\": \\"'0'\\",
\\"computed\\": false
},
\\"required\\": false
}
}
};"
`;

View File

@ -0,0 +1,10 @@
import React from 'react';
interface Props {
padding: string;
margin: number;
}
export const Text: React.FC<Props> = ({ padding = '0', margin }) => <>Text</>;
export const component = Text;

View File

@ -0,0 +1,21 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 8143-ts-react-fc-generics 1`] = `
Object {
"rows": Array [
Object {
"defaultValue": Object {
"detail": undefined,
"summary": "'0'",
},
"description": undefined,
"name": "padding",
"required": false,
"type": Object {
"detail": undefined,
"summary": "unknown",
},
},
],
}
`;

View File

@ -10,6 +10,7 @@ const fixtures = [
'8663-js-styled-components',
'9626-js-default-values',
'9668-js-proptypes-no-jsdoc',
'8143-ts-react-fc-generics',
];
const stories = storiesOf('Properties/React', module);