mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:21:15 +08:00
10 lines
243 B
JavaScript
10 lines
243 B
JavaScript
import React from 'react';
|
|
import { Button } from '../components/react-demo';
|
|
|
|
export default {
|
|
title: 'Some really long story kind description',
|
|
};
|
|
|
|
export const Story1 = () => <Button>Hello Button</Button>;
|
|
Story1.storyName = 'with text';
|