Skip to content

Commit f8c9829

Browse files
committed
working
1 parent 4011397 commit f8c9829

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

src/Demos/ReactLifeCycleStack.re

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module ComponentDidMountDemo = {
44
[@react.component]
55
let make = (~name: string) => {
66
let (counter, setCounter) = React.useState(() => 0);
7+
Js.log(name);
78
// this useEffect ignores passed in prop `name`
89
// Enter any thing you want to enter in componentDidMount.
910
React.useEffect1(

src/bindings/WithNavigationFocusScreen.re

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// }
1010
// }
1111
open ReactNative;
12-
open ReactNavigation;
1312
module FocusStateLabel = {
1413
[@react.component]
1514
let make = (~isFocused: bool) => {

0 commit comments

Comments
 (0)