mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:21:07 +08:00
CLI: Add component meta to templates
This commit is contained in:
parent
2913fe4d5d
commit
1f6ce87f09
@ -2,6 +2,7 @@ import { Welcome } from '@storybook/angular/demo';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => ({
|
||||
|
@ -5,6 +5,7 @@ import { Button } from '@storybook/angular/demo';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const text = () => ({
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
|
||||
import { Welcome } from '@storybook/angular/demo';
|
||||
|
||||
<Meta title="Welcome" />
|
||||
<Meta title="Welcome" component={Welcome} />
|
||||
|
||||
# Welcome
|
||||
|
||||
|
@ -4,7 +4,7 @@ import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
|
||||
<Meta title="Button" />
|
||||
<Meta title="Button" component={Button} />
|
||||
|
||||
# Button
|
||||
|
||||
|
@ -2,6 +2,7 @@ import Welcome from './components/welcome/index.marko';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const welcome = () => ({ component: Welcome });
|
||||
|
@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;
|
||||
|
@ -4,6 +4,7 @@ import { Button } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const text = () => <Button onClick={action('clicked')}>Hello Button</Button>;
|
||||
|
@ -4,6 +4,7 @@ import Welcome from './Welcome';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => ({
|
||||
|
@ -4,6 +4,7 @@ import Button from './Button';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const text = () => ({
|
||||
|
@ -6,6 +6,7 @@ import Welcome from './Welcome';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;
|
||||
|
@ -6,6 +6,7 @@ import Button from './Button';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const text = () => <Button onClick={action('clicked')}>Hello Button</Button>;
|
||||
|
@ -5,6 +5,7 @@ import Welcome from './Welcome';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => <Welcome showApp={linkTo('Button', 'with text')} />;
|
||||
|
@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;
|
||||
|
@ -4,6 +4,7 @@ import { Button } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const text = () => <Button onClick={action('clicked')}>Hello Button</Button>;
|
||||
|
@ -2,7 +2,7 @@ import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import { Welcome } from '@storybook/react/demo';
|
||||
|
||||
<Meta title="Welcome" />
|
||||
<Meta title="Welcome" component={Welcome} />
|
||||
|
||||
# Welcome
|
||||
|
||||
|
@ -2,7 +2,7 @@ import { action } from '@storybook/addon-actions';
|
||||
import { Button } from '@storybook/react/demo';
|
||||
import { Meta, Story } from '@storybook/addon-docs/blocks';
|
||||
|
||||
<Meta title="Button" />
|
||||
<Meta title="Button" component={Button} />
|
||||
|
||||
# Button
|
||||
|
||||
|
@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;
|
||||
|
@ -4,6 +4,7 @@ import { Button } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const text = () => <Button onClick={action('clicked')}>Hello Button</Button>;
|
||||
|
@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;
|
||||
|
@ -4,6 +4,7 @@ import { Button } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const text = () => <Button onClick={action('clicked')}>Hello Button</Button>;
|
||||
|
@ -2,7 +2,7 @@ import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import { Welcome } from '@storybook/react/demo';
|
||||
|
||||
<Meta title="Welcome" />
|
||||
<Meta title="Welcome" component={Welcome} />
|
||||
|
||||
# Welcome
|
||||
|
||||
|
@ -2,7 +2,7 @@ import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { Button } from '@storybook/react/demo';
|
||||
|
||||
<Meta title="Button" />
|
||||
<Meta title="Button" component={Button} />
|
||||
|
||||
# Button
|
||||
|
||||
|
@ -4,6 +4,7 @@ import Welcome from './Welcome.vue';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => ({
|
||||
|
@ -5,6 +5,7 @@ import MyButton from './MyButton.vue';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: MyButton,
|
||||
};
|
||||
|
||||
export const text = () => ({
|
||||
|
@ -2,7 +2,7 @@ import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import Welcome from './Welcome.vue';
|
||||
|
||||
<Meta title="Welcome" />
|
||||
<Meta title="Welcome" component={Welcome} />
|
||||
|
||||
# Welcome
|
||||
|
||||
|
@ -3,7 +3,7 @@ import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import MyButton from './MyButton.vue';
|
||||
|
||||
<Meta title="Button" />
|
||||
<Meta title="Button" component={MyButton} />
|
||||
|
||||
# Button
|
||||
|
||||
|
@ -4,6 +4,7 @@ import Button from './button.svelte';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const text = () => ({
|
||||
|
@ -4,6 +4,7 @@ import Welcome from './Welcome';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => ({
|
||||
|
@ -5,6 +5,7 @@ import MyButton from './MyButton';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: MyButton,
|
||||
};
|
||||
|
||||
export const text = () => ({
|
||||
|
@ -2,7 +2,7 @@ import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import Welcome from './Welcome';
|
||||
|
||||
<Meta title="Welcome" />
|
||||
<Meta title="Welcome" component={Welcome} />
|
||||
|
||||
# Welcome
|
||||
|
||||
|
@ -3,7 +3,7 @@ import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import MyButton from './MyButton';
|
||||
|
||||
<Meta title="Button" />
|
||||
<Meta title="Button" component={MyButton} />
|
||||
|
||||
# Button
|
||||
|
||||
|
@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Welcome',
|
||||
component: Welcome,
|
||||
};
|
||||
|
||||
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;
|
||||
|
@ -5,6 +5,7 @@ import { Button } from '@storybook/react/demo';
|
||||
|
||||
export default {
|
||||
title: 'Button',
|
||||
component: Button,
|
||||
};
|
||||
|
||||
export const text = () => <Button onClick={action('clicked')}>Hello Button</Button>;
|
||||
|
@ -2,7 +2,7 @@ import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import { Welcome } from '@storybook/react/demo';
|
||||
|
||||
<Meta title="Welcome" />
|
||||
<Meta title="Welcome" component={Welcome} />
|
||||
|
||||
# Welcome
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
import { Meta, Story } from '@storybook/addon-docs/blocks';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { Button } from '@storybook/react/demo';
|
||||
import { Meta, Story } from '@storybook/addon-docs/blocks';
|
||||
|
||||
<Meta title="Button" />
|
||||
<Meta title="Button" component={Button} />
|
||||
|
||||
# Button
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user