CLI: Add component meta to templates

This commit is contained in:
Michael Shilman 2019-10-18 00:00:08 +08:00
parent 2913fe4d5d
commit 1f6ce87f09
35 changed files with 36 additions and 13 deletions

View File

@ -2,6 +2,7 @@ import { Welcome } from '@storybook/angular/demo';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => ({

View File

@ -5,6 +5,7 @@ import { Button } from '@storybook/angular/demo';
export default {
title: 'Button',
component: Button,
};
export const text = () => ({

View File

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

View File

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

View File

@ -2,6 +2,7 @@ import Welcome from './components/welcome/index.marko';
export default {
title: 'Welcome',
component: Welcome,
};
export const welcome = () => ({ component: Welcome });

View File

@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;

View File

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

View File

@ -4,6 +4,7 @@ import Welcome from './Welcome';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => ({

View File

@ -4,6 +4,7 @@ import Button from './Button';
export default {
title: 'Button',
component: Button,
};
export const text = () => ({

View File

@ -6,6 +6,7 @@ import Welcome from './Welcome';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;

View File

@ -6,6 +6,7 @@ import Button from './Button';
export default {
title: 'Button',
component: Button,
};
export const text = () => <Button onClick={action('clicked')}>Hello Button</Button>;

View File

@ -5,6 +5,7 @@ import Welcome from './Welcome';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => <Welcome showApp={linkTo('Button', 'with text')} />;

View File

@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;

View File

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

View File

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

View File

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

View File

@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;

View File

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

View File

@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;

View File

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

View File

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

View File

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

View File

@ -4,6 +4,7 @@ import Welcome from './Welcome.vue';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => ({

View File

@ -5,6 +5,7 @@ import MyButton from './MyButton.vue';
export default {
title: 'Button',
component: MyButton,
};
export const text = () => ({

View File

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

View File

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

View File

@ -4,6 +4,7 @@ import Button from './button.svelte';
export default {
title: 'Button',
component: Button,
};
export const text = () => ({

View File

@ -4,6 +4,7 @@ import Welcome from './Welcome';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => ({

View File

@ -5,6 +5,7 @@ import MyButton from './MyButton';
export default {
title: 'Button',
component: MyButton,
};
export const text = () => ({

View File

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

View File

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

View File

@ -4,6 +4,7 @@ import { Welcome } from '@storybook/react/demo';
export default {
title: 'Welcome',
component: Welcome,
};
export const toStorybook = () => <Welcome showApp={linkTo('Button')} />;

View File

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

View File

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

View File

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