File tree 1 file changed +4
-4
lines changed
lib/cli/generators/ANGULAR/template-csf/src/stories
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ export default {
11
11
export const Text = ( ) => ( {
12
12
component : Button ,
13
13
props : {
14
- Text : 'Hello Button' ,
14
+ text : 'Hello Button' ,
15
15
} ,
16
16
} ) ;
17
17
18
18
export const Emoji = ( ) => ( {
19
19
component : Button ,
20
20
props : {
21
- Text : '😀 😎 👍 💯' ,
21
+ text : '😀 😎 👍 💯' ,
22
22
} ,
23
23
} ) ;
24
24
@@ -29,7 +29,7 @@ Emoji.story = {
29
29
export const WithSomeEmojiAndAction = ( ) => ( {
30
30
component : Button ,
31
31
props : {
32
- Text : '😀 😎 👍 💯' ,
32
+ text : '😀 😎 👍 💯' ,
33
33
onClick : action ( 'This was clicked OMG' ) ,
34
34
} ,
35
35
} ) ;
@@ -42,7 +42,7 @@ WithSomeEmojiAndAction.story = {
42
42
export const ButtonWithLinkToAnotherStory = ( ) => ( {
43
43
component : Button ,
44
44
props : {
45
- Text : 'Go to Welcome Story' ,
45
+ text : 'Go to Welcome Story' ,
46
46
onClick : linkTo ( 'Welcome' ) ,
47
47
} ,
48
48
} ) ;
You can’t perform that action at this time.
0 commit comments