Props: #8279 repro

This commit is contained in:
Michael Shilman 2020-02-14 22:13:35 +08:00
parent 412977380d
commit eaa147ae62
4 changed files with 55 additions and 0 deletions

View File

@ -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;"
`;

View File

@ -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;

View File

@ -0,0 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 8279-js-styled-docgen 1`] = `
Object {
"rows": Array [],
}
`;

View File

@ -12,6 +12,7 @@ const fixtures = [
'9668-js-proptypes-no-jsdoc', '9668-js-proptypes-no-jsdoc',
'8143-ts-react-fc-generics', '8143-ts-react-fc-generics',
'8143-ts-imported-types', '8143-ts-imported-types',
'8279-js-styled-docgen',
]; ];
const stories = storiesOf('Properties/React', module); const stories = storiesOf('Properties/React', module);