File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ const items = [
21
21
{ text : "world" }
22
22
] ;
23
23
24
- const handler = useEventHandler < QPushButtonSignals > (
25
- {
26
- clicked : clicked => { }
27
- } ,
28
- [ ]
29
- ) ;
30
24
const App = ( ) => {
25
+ const handler = useEventHandler < QPushButtonSignals > (
26
+ {
27
+ clicked : clicked => { console . log ( "clicked" ) ; }
28
+ } ,
29
+ [ ]
30
+ ) ;
31
31
return (
32
32
< Window >
33
33
< View style = { containerStyle } >
@@ -36,10 +36,11 @@ const App = () => {
36
36
< Button style = { buttonStyle } text = { "World" } />
37
37
</ View >
38
38
< ComboBox items = { items } />
39
+ { /* commenting this out while I still figure out the error;
39
40
<AnimatedImage
40
41
style="border: 1px solid blue; flex:1;"
41
42
src="/Users/atulr/Project/nodegui/nodegui/src/lib/QtGui/__tests__/assets/fine.gif"
42
- />
43
+ /> */ }
43
44
</ View >
44
45
</ Window >
45
46
) ;
You can’t perform that action at this time.
0 commit comments