aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/stories/headline.stories.tsx
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-15 09:48:06 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-15 09:48:06 +0200
commit14d2364fc69e0222133115c55a36286986006098 (patch)
tree9e9b3c41ef742bbe87ca1632b292c67043051957 /uidev/src/stories/headline.stories.tsx
parent5.6.3-nightly.34 [skip ci] (diff)
downloadferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.gz
ferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.zst
ferdium-app-14d2364fc69e0222133115c55a36286986006098.zip
chore: update eslint setup (#2074)
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 ));