Props: #9626 repro

This commit is contained in:
Michael Shilman 2020-02-14 16:50:23 +08:00
parent 14456b27f5
commit 3cfe6e19ad
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,24 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 9626-js-default-values 1`] = `
"import React from 'react'; // eslint-disable-next-line react/prop-types
export const Tag = ({
title = 'Beta'
}) => React.createElement(\\"div\\", null, title);
export const component = Tag;
Tag.__docgenInfo = {
\\"description\\": \\"\\",
\\"methods\\": [],
\\"displayName\\": \\"Tag\\",
\\"props\\": {
\\"title\\": {
\\"defaultValue\\": {
\\"value\\": \\"'Beta'\\",
\\"computed\\": false
},
\\"required\\": false
}
}
};"
`;

View File

@ -0,0 +1,5 @@
import React from 'react';
// eslint-disable-next-line react/prop-types
export const Tag = ({ title = 'Beta' }) => <div>{title}</div>;
export const component = Tag;

View File

@ -0,0 +1,21 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`react component properties 9626-js-default-values 1`] = `
Object {
"rows": Array [
Object {
"defaultValue": Object {
"detail": undefined,
"summary": "'Beta'",
},
"description": undefined,
"name": "title",
"required": false,
"type": Object {
"detail": undefined,
"summary": "unknown",
},
},
],
}
`;