forked from openedx/paragon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Paragon.stories.jsx
41 lines (37 loc) · 1.07 KB
/
Paragon.stories.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* eslint-disable import/no-extraneous-dependencies */
import React from 'react';
import { storiesOf } from '@storybook/react';
storiesOf(' |Paragon', module)
// Option defaults:
.addParameters({
options: {
showPanel: false,
},
info: {
disable: true,
},
})
.add('Welcome', () => (
<div>
<h1>💎 Paragon</h1>
<p>
This is a documentation and demo space for the Paragon accessible UI component
library. Better docs coming soon, but for now, check out our existing components
via the links to the left-hand side.
</p>
<p>
Documentation generated with <a
href="https://github.com/kadirahq/react-storybook"
target="_blank"
rel="noopener noreferrer"
>
React Storybook
</a>.
</p>
</div>
));
// These are here to force storybook to order groups
// in this order rather than alphabetically
storiesOf('Basics', module).add('noop', () => {});
storiesOf('Navigation', module).add('noop', () => {});
storiesOf('User Input', module).add('noop', () => {});