Created
August 10, 2021 17:02
-
-
Save ernestofreyreg/ae576b402f6656920d4c7d8dc53c15ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { ComponentMeta } from '@storybook/react' | |
import { SubscriptionList } from './SubscriptionList' | |
import { Container } from '@material-ui/core' | |
export default { | |
title: 'Components/SubscriptionList', | |
component: SubscriptionList, | |
decorators: [ | |
Story => ( | |
<Container maxWidth='lg'> | |
<Story /> | |
</Container> | |
) | |
] | |
} as ComponentMeta<typeof SubscriptionList> | |
export const list = () => ( | |
<SubscriptionList | |
subscriptions={[ | |
{ email: '[email protected]', updated: 1628613368790 }, | |
{ email: '[email protected]', updated: 1628613368790 }, | |
{ email: '[email protected]', updated: 1628613368790 } | |
]} | |
/> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment