mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Props: #8279 repro
This commit is contained in:
parent
412977380d
commit
eaa147ae62
@ -0,0 +1,24 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`react component properties 8279-js-styled-docgen 1`] = `
|
||||
"import styled from 'styled-components';
|
||||
import PropTypes from 'prop-types';
|
||||
/**
|
||||
* Use \`A\` to provide a regular link
|
||||
*/
|
||||
|
||||
const A = styled('a')({
|
||||
margin: '8px 0',
|
||||
outline: 'none'
|
||||
});
|
||||
A.displayName = 'Link';
|
||||
A.defaultProps = {
|
||||
children: 'This is a link'
|
||||
};
|
||||
A.propTypes = {
|
||||
/** That should be the clickable element */
|
||||
children: PropTypes.node.isRequired
|
||||
};
|
||||
export default A;
|
||||
export const component = A;"
|
||||
`;
|
@ -0,0 +1,23 @@
|
||||
import styled from 'styled-components';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
/**
|
||||
* Use `A` to provide a regular link
|
||||
*/
|
||||
const A = styled('a')({
|
||||
margin: '8px 0',
|
||||
outline: 'none',
|
||||
});
|
||||
|
||||
A.displayName = 'Link';
|
||||
A.defaultProps = {
|
||||
children: 'This is a link',
|
||||
};
|
||||
|
||||
A.propTypes = {
|
||||
/** That should be the clickable element */
|
||||
children: PropTypes.node.isRequired,
|
||||
};
|
||||
export default A;
|
||||
|
||||
export const component = A;
|
@ -0,0 +1,7 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`react component properties 8279-js-styled-docgen 1`] = `
|
||||
Object {
|
||||
"rows": Array [],
|
||||
}
|
||||
`;
|
@ -12,6 +12,7 @@ const fixtures = [
|
||||
'9668-js-proptypes-no-jsdoc',
|
||||
'8143-ts-react-fc-generics',
|
||||
'8143-ts-imported-types',
|
||||
'8279-js-styled-docgen',
|
||||
];
|
||||
|
||||
const stories = storiesOf('Properties/React', module);
|
||||
|
Loading…
x
Reference in New Issue
Block a user