mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Props: #9626 repro
This commit is contained in:
parent
14456b27f5
commit
3cfe6e19ad
@ -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
|
||||
}
|
||||
}
|
||||
};"
|
||||
`;
|
@ -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;
|
@ -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",
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
`;
|
Loading…
x
Reference in New Issue
Block a user