mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
React argTypes: Use defaultValue as initial arg in test
This commit is contained in:
parent
44f8ac526b
commit
0443717863
@ -18,7 +18,7 @@ const argsTableProps = (component: Component) => {
|
||||
|
||||
const ArgsStory = ({ component }: any) => {
|
||||
const { rows } = argsTableProps(component);
|
||||
const initialArgs = mapValues(rows, () => null) as Args;
|
||||
const initialArgs = mapValues(rows, (argType) => argType.defaultValue) as Args;
|
||||
|
||||
const [args, setArgs] = useState(initialArgs);
|
||||
return (
|
||||
|
Loading…
x
Reference in New Issue
Block a user