mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
commit
46e970c77e
@ -0,0 +1,7 @@
|
||||
import * as React from 'react';
|
||||
|
||||
export default {
|
||||
title: 'Component 1',
|
||||
};
|
||||
|
||||
export const Story1 = () => <div>Component 1 - Story 1</div>;
|
@ -0,0 +1,8 @@
|
||||
import * as React from 'react';
|
||||
|
||||
export default {
|
||||
title: 'Component 2',
|
||||
};
|
||||
|
||||
export const Story1 = () => <div>Component 2 - Story 1</div>;
|
||||
export const Story2 = () => <div>Component 2 - Story 2</div>;
|
@ -8,7 +8,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script src="./storybook.tsx"></script>
|
||||
<script src="./storybook.ts"></script>
|
||||
<div class="sb-errordisplay sb-wrapper">
|
||||
<div id="error-message" class="sb-heading"></div>
|
||||
<pre class="sb-errordisplay_code"><code id="error-stack"></code></pre>
|
||||
|
5
examples/standalone-preview/storybook.ts
Normal file
5
examples/standalone-preview/storybook.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import { configure } from '@storybook/react';
|
||||
import * as Comp1 from './stories/Component1.stories';
|
||||
import * as Comp2 from './stories/Component2.stories';
|
||||
|
||||
configure(() => [Comp1, Comp2], module);
|
@ -1,10 +0,0 @@
|
||||
import * as React from 'react';
|
||||
import { configure, storiesOf } from '@storybook/react';
|
||||
|
||||
configure(() => {
|
||||
storiesOf('Component 1', module).add('Story 1', () => <div>Component 1 - Story 1</div>);
|
||||
|
||||
storiesOf('Component 2', module)
|
||||
.add('Story 1', () => <div>Category 2 - Story 1</div>)
|
||||
.add('Story 2', () => <div>Category 2 - Story 2</div>);
|
||||
}, module);
|
Loading…
x
Reference in New Issue
Block a user