refactor: uncomment CyclicArgs

This commit is contained in:
Dominic Lee 2021-01-02 11:54:06 +00:00
parent 082083d53c
commit de90d7ea85
No known key found for this signature in database
GPG Key ID: 6D6D13B7A38673EE

View File

@ -40,13 +40,13 @@ CustomControls.argTypes = {
export const NoArgs = () => <Button>no args</Button>;
// const hasCycle: any = {};
// hasCycle.cycle = hasCycle;
const hasCycle: any = {};
hasCycle.cycle = hasCycle;
// export const CyclicArgs = Template.bind({});
// CyclicArgs.args = {
// hasCycle,
// };
// CyclicArgs.parameters = {
// chromatic: { disable: true },
// };
export const CyclicArgs = Template.bind({});
CyclicArgs.args = {
hasCycle,
};
CyclicArgs.parameters = {
chromatic: { disable: true },
};