File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,11 @@ An example for data array is shown below:
52
52
``` jsx
53
53
const dataArray = [
54
54
{
55
- name: ' User 1 ' ,
55
+ name: ' Jon Dew ' ,
56
56
avatarUrl: ' example.svg'
57
57
},
58
58
{
59
- name: ' User 2 '
59
+ name: ' Jack '
60
60
}
61
61
];
62
62
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ export interface AvatarPropType {
3
3
name ?: string ,
4
4
elivateOnHover ?: boolean ,
5
5
nameOnHover ?: boolean ,
6
- onUserClick ?: function ,
6
+ onUserClick ?: ( ) => void ,
7
7
styles ?: StyleProp ,
8
8
id ?: string
9
9
}
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ module.exports = {
85
85
new MergeIntoSingleFilePlugin ( {
86
86
files : {
87
87
'types/index.d.ts' : [
88
- path . resolve ( __dirname , 'src/sdk/ types.ts' )
88
+ path . resolve ( __dirname , 'src/lib/inline-images/ types.d .ts' )
89
89
]
90
90
}
91
91
} )
You can’t perform that action at this time.
0 commit comments