We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03da3fa commit 8bf7fb7Copy full SHA for 8bf7fb7
src/start/RealmInputScreen.js
@@ -22,6 +22,8 @@ type Props = $ReadOnly<{|
22
|}>;
23
24
export default function RealmInputScreen(props: Props): Node {
25
+ const { navigation } = props;
26
+
27
const [progress, setProgress] = useState<boolean>(false);
28
const [realmInputValue, setRealmInputValue] = useState<string>('');
29
const [error, setError] = useState<string | null>(null);
@@ -53,8 +55,6 @@ export default function RealmInputScreen(props: Props): Node {
53
55
}
54
56
}, [realmInputValue]);
57
- const { navigation } = props;
-
58
const styles = {
59
input: { marginTop: 16, marginBottom: 8 },
60
hintText: { paddingLeft: 2, fontSize: 12 },
0 commit comments