React argTypes: Use defaultValue as initial arg in test

This commit is contained in:
Michael Shilman 2020-06-03 22:13:40 +08:00
parent 44f8ac526b
commit 0443717863

View File

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