mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Props: #8143 repro
This commit is contained in:
parent
8219af19d0
commit
e3927d9cea
@ -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
|
||||
}
|
||||
}
|
||||
};"
|
||||
`;
|
@ -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;
|
@ -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",
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
`;
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user