mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
16 lines
524 B
JavaScript
16 lines
524 B
JavaScript
import React from 'react';
|
|
import { linkTo } from '@storybook/addon-links';
|
|
import { Welcome } from '@storybook/react/demo';
|
|
|
|
export default {
|
|
title: 'Other/Demo/Welcome',
|
|
component: Welcome,
|
|
};
|
|
|
|
// export const ToStorybook = () => <Welcome showApp={linkTo('other-demo-buttonmdx--with-text')} />;
|
|
// export const ToStorybook = () => <Welcome showApp={linkTo('Other/Demo/ButtonMdx')} />;
|
|
export const ToStorybook = () => <Welcome showApp={linkTo('Other/Demo/Button')} />;
|
|
ToStorybook.story = {
|
|
name: 'to Storybook',
|
|
};
|