-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23c55ff
commit 7e469c5
Showing
3 changed files
with
3 additions
and
33 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
import React from 'react'; | ||
// also exported from '@storybook/react' if you can deal with breaking changes in 6.1 | ||
import { Story, Meta } from '@storybook/react/types-6-0'; | ||
|
||
import { BasicDemo, BasicProps } from './Basic'; | ||
|
||
export default { | ||
title: 'Example/basic-demo', | ||
component: BasicDemo, | ||
} as Meta; | ||
}; | ||
|
||
const Template: Story<BasicProps> = (args) => <BasicDemo {...args} />; | ||
const Template = (args) => <BasicDemo {...args} />; | ||
|
||
export const MobileBasicDemo = Template.bind({}); | ||
MobileBasicDemo.args = {}; |