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 a8d53d3 commit acd4ea0Copy full SHA for acd4ea0
src/start/RealmInputScreen.js
@@ -30,6 +30,8 @@ const urlFromInputValue = (realmInputValue: string): URL | void => {
30
};
31
32
export default function RealmInputScreen(props: Props): Node {
33
+ const { navigation } = props;
34
+
35
const [progress, setProgress] = useState<boolean>(false);
36
const [realmInputValue, setRealmInputValue] = useState<string>('');
37
const [error, setError] = useState<string | null>(null);
@@ -61,8 +63,6 @@ export default function RealmInputScreen(props: Props): Node {
61
63
}
62
64
}, [realmInputValue]);
65
- const { navigation } = props;
-
66
const styles = {
67
input: { marginTop: 16, marginBottom: 8 },
68
hintText: { paddingLeft: 2, fontSize: 12 },
0 commit comments