aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/stories/headline.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'uidev/src/stories/headline.stories.tsx')
-rw-r--r--uidev/src/stories/headline.stories.tsx17
1 files changed, 8 insertions, 9 deletions
diff --git a/uidev/src/stories/headline.stories.tsx b/uidev/src/stories/headline.stories.tsx
index 1f1ab2036..f6a95b1f4 100644
--- a/uidev/src/stories/headline.stories.tsx
+++ b/uidev/src/stories/headline.stories.tsx
@@ -38,12 +38,11 @@ import { storiesOf } from '../stores/stories';
38// </> 38// </>
39// )); 39// ));
40 40
41storiesOf('Typo') 41storiesOf('Typo').add('Headlines', () => (
42 .add('Headlines', () => ( 42 <>
43 <> 43 <H1>Welcome to the world of tomorrow</H1>
44 <H1>Welcome to the world of tomorrow</H1> 44 <H2>Welcome to the world of tomorrow</H2>
45 <H2>Welcome to the world of tomorrow</H2> 45 <H3>Welcome to the world of tomorrow</H3>
46 <H3>Welcome to the world of tomorrow</H3> 46 <H4>Welcome to the world of tomorrow</H4>
47 <H4>Welcome to the world of tomorrow</H4> 47 </>
48 </> 48));
49 ));