@@ -9,7 +9,7 @@ export default {
9
9
} ;
10
10
11
11
export const BasicUsage = ( ) => (
12
- < div className = 'container column grey' >
12
+ < div className = 'storybook__container column grey' >
13
13
< Cell
14
14
title = { { text : 'Title' , fontSize : '14px' } }
15
15
content = { { text : 'Content' , fontSize : '12px' } }
@@ -23,7 +23,7 @@ export const BasicUsage = () => (
23
23
) ;
24
24
25
25
export const cellIcon = ( ) => (
26
- < div className = 'container column grey' >
26
+ < div className = 'storybook__container column grey' >
27
27
< Cell
28
28
titleIcon = { { name : 'location-o' , size : '12px' } }
29
29
title = { { text : 'Title' , fontSize : '14px' } }
@@ -34,39 +34,39 @@ export const cellIcon = () => (
34
34
) ;
35
35
36
36
export const cellTag = ( ) => (
37
- < div className = 'container column grey' >
37
+ < div className = 'storybook__container column grey' >
38
38
< Cell
39
39
title = { { text : 'Title' , fontSize : '14px' } }
40
- Tag = { < Tag type = 'danger' text = 'Tag' /> }
40
+ tag = { < Tag type = 'danger' text = 'Tag' /> }
41
41
content = { { text : 'Content' , fontSize : '12px' } }
42
42
/>
43
43
</ div >
44
44
) ;
45
45
46
46
export const roundCell = ( ) => (
47
- < div className = 'container column grey' >
47
+ < div className = 'storybook__container column grey' >
48
48
< Cell title = { { text : 'Title' , fontSize : '14px' } } round />
49
49
</ div >
50
50
) ;
51
51
52
52
export const valueOnly = ( ) => (
53
- < div className = 'container column grey' >
53
+ < div className = 'storybook__container column grey' >
54
54
< Cell content = { { text : 'Content' , fontSize : '14px' } } />
55
55
</ div >
56
56
) ;
57
57
58
58
export const URL = ( ) => (
59
- < div className = 'container column grey' >
59
+ < div className = 'storybook__container column grey' >
60
60
< Cell
61
61
title = { { text : 'URL' , fontSize : '14px' } }
62
- url = 'www.google.com'
62
+ url = 'https:// www.google.com'
63
63
replace
64
64
/>
65
65
</ div >
66
66
) ;
67
67
68
- export const Active = ( ) => (
69
- < div className = 'container column grey' >
68
+ export const OnClick = ( ) => (
69
+ < div className = 'storybook__container column grey' >
70
70
< Cell
71
71
title = { { text : 'Click' , fontSize : '14px' } }
72
72
click = { ( e ) => {
0 commit comments