1
1
import React from "react" ;
2
- import { SnakeCouple } from "./snake-couple" ;
3
- import { SnakeDNA } from "./snake-dna" ;
2
+ import { Cathedral } from "./cathedral" ;
3
+ import { Florence } from "./florence" ;
4
+ import { Florence2 } from "./florence2" ;
5
+ import { HandWithSnakeInside } from "./hand-with-snake-inside" ;
4
6
import { Snake1 } from "./snake-1" ;
5
7
import { Snake2 } from "./snake-2" ;
6
- import { SnakeTail } from "./snake-tail" ;
7
8
import { Snake4 } from "./snake-4" ;
8
9
import { Snake5 } from "./snake-5" ;
9
- import { Cathedral } from "./cathedral" ;
10
- import { Florence } from "./florence" ;
10
+ import { SnakeBody } from "./snake-body" ;
11
+ import { SnakeCouple } from "./snake-couple" ;
12
+ import { SnakeDNA } from "./snake-dna" ;
13
+ import { SnakeHead } from "./snake-head" ;
14
+ import { SnakeInDragon } from "./snake-in-dragon" ;
15
+ import { SnakeInDragonInverted } from "./snake-in-dragon-inverted" ;
16
+ import { SnakeLetter } from "./snake-letter" ;
17
+ import { SnakeLongNeck } from "./snake-long-neck" ;
18
+ import { SnakePencil } from "./snake-pencil" ;
19
+ import { SnakeTail } from "./snake-tail" ;
20
+ import { SnakeWithBalloon } from "./snake-with-balloon" ;
21
+ import { SnakeWithContacts } from "./snake-with-contacts" ;
22
+ import { SnakesWithBanner } from "./snakes-with-banner" ;
23
+ import { SnakesWithCocktail } from "./snakes-with-cocktail" ;
24
+ import { SnakesWithDirections } from "./snakes-with-directions" ;
25
+ import { SnakesWithOutlines } from "./snakes-with-outlines" ;
11
26
import { TripleSnakes } from "./triple-snakes" ;
12
27
13
28
export default {
@@ -19,11 +34,17 @@ const Template = ({ component: Component }) => {
19
34
} ;
20
35
Template . args = { component : SnakeCouple } ;
21
36
22
- export const SnakeCoupleStory = Template . bind ( { } ) ;
23
- SnakeCoupleStory . args = { component : SnakeCouple } ;
37
+ export const CathedralStory = Template . bind ( { } ) ;
38
+ CathedralStory . args = { component : Cathedral } ;
24
39
25
- export const SnakeDNAStory = Template . bind ( { } ) ;
26
- SnakeDNAStory . args = { component : SnakeDNA } ;
40
+ export const FlorenceStory = Template . bind ( { } ) ;
41
+ FlorenceStory . args = { component : Florence } ;
42
+
43
+ export const Florence2Story = Template . bind ( { } ) ;
44
+ Florence2Story . args = { component : Florence2 } ;
45
+
46
+ export const HandWithSnakeInsideStory = Template . bind ( { } ) ;
47
+ HandWithSnakeInsideStory . args = { component : HandWithSnakeInside } ;
27
48
28
49
export const Snake1Story = Template . bind ( { } ) ;
29
50
Snake1Story . args = { component : Snake1 } ;
@@ -40,11 +61,53 @@ Snake4Story.args = { component: Snake4 };
40
61
export const Snake5Story = Template . bind ( { } ) ;
41
62
Snake5Story . args = { component : Snake5 } ;
42
63
43
- export const CathedralStory = Template . bind ( { } ) ;
44
- CathedralStory . args = { component : Cathedral } ;
64
+ export const SnakeBodyStory = Template . bind ( { } ) ;
65
+ SnakeBodyStory . args = { component : SnakeBody } ;
45
66
46
- export const FlorenceStory = Template . bind ( { } ) ;
47
- FlorenceStory . args = { component : Florence } ;
67
+ export const SnakeCoupleStory = Template . bind ( { } ) ;
68
+ SnakeCoupleStory . args = { component : SnakeCouple } ;
69
+
70
+ export const SnakeDNAStory = Template . bind ( { } ) ;
71
+ SnakeDNAStory . args = { component : SnakeDNA } ;
72
+
73
+ export const SnakeHeadStory = Template . bind ( { } ) ;
74
+ SnakeHeadStory . args = { component : SnakeHead } ;
75
+
76
+ export const SnakeInDragonInvertedStory = Template . bind ( { } ) ;
77
+ SnakeInDragonInvertedStory . args = { component : SnakeInDragonInverted } ;
78
+
79
+ export const SnakeInDragonStory = Template . bind ( { } ) ;
80
+ SnakeInDragonStory . args = { component : SnakeInDragon } ;
81
+
82
+ export const SnakeLetterStory = Template . bind ( { } ) ;
83
+ SnakeLetterStory . args = { component : SnakeLetter } ;
84
+
85
+ export const SnakeLongNeckStory = Template . bind ( { } ) ;
86
+ SnakeLongNeckStory . args = { component : SnakeLongNeck } ;
87
+
88
+ export const SnakePencilStory = Template . bind ( { } ) ;
89
+ SnakePencilStory . args = { component : SnakePencil } ;
90
+
91
+ export const SnakeTailStory = Template . bind ( { } ) ;
92
+ SnakeTailStory . args = { component : SnakeTail } ;
93
+
94
+ export const SnakeWithBalloonStory = Template . bind ( { } ) ;
95
+ SnakeWithBalloonStory . args = { component : SnakeWithBalloon } ;
96
+
97
+ export const SnakeWithContactsStory = Template . bind ( { } ) ;
98
+ SnakeWithContactsStory . args = { component : SnakeWithContacts } ;
99
+
100
+ export const SnakesWithBannerStory = Template . bind ( { } ) ;
101
+ SnakesWithBannerStory . args = { component : SnakesWithBanner } ;
102
+
103
+ export const SnakesWithCocktailStory = Template . bind ( { } ) ;
104
+ SnakesWithCocktailStory . args = { component : SnakesWithCocktail } ;
105
+
106
+ export const SnakesWithDirectionsStory = Template . bind ( { } ) ;
107
+ SnakesWithDirectionsStory . args = { component : SnakesWithDirections } ;
108
+
109
+ export const SnakesWithOutlinesStory = Template . bind ( { } ) ;
110
+ SnakesWithOutlinesStory . args = { component : SnakesWithOutlines } ;
48
111
49
112
export const TripleSnakesStory = Template . bind ( { } ) ;
50
113
TripleSnakesStory . args = { component : TripleSnakes } ;
0 commit comments