about summary refs log tree commit diff
path: root/src/view/screens/Signup.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-07-22 16:06:51 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-07-22 16:06:51 -0500
commit7f04ac172e8ada1244de1df2064e32d32f1c2348 (patch)
treedcecdfcad0746a296b38e8d3acb5dd983589d6b0 /src/view/screens/Signup.tsx
parentce83648f9da3a93018fc7845bec1d35c1519028d (diff)
downloadvoidsky-7f04ac172e8ada1244de1df2064e32d32f1c2348.tar.zst
Add post composer
Diffstat (limited to 'src/view/screens/Signup.tsx')
-rw-r--r--src/view/screens/Signup.tsx34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/view/screens/Signup.tsx b/src/view/screens/Signup.tsx
deleted file mode 100644
index 4a8c5df2d..000000000
--- a/src/view/screens/Signup.tsx
+++ /dev/null
@@ -1,34 +0,0 @@
-import React from 'react'
-import {Text, View} from 'react-native'
-import {observer} from 'mobx-react-lite'
-import {Shell} from '../shell'
-// import type {RootTabsScreenProps} from '../routes/types'
-// import {useStores} from '../../state'
-
-export const Signup = observer(
-  (/*{navigation}: RootTabsScreenProps<'Signup'>*/) => {
-    // const store = useStores()
-    return (
-      <Shell>
-        <View style={{justifyContent: 'center', alignItems: 'center'}}>
-          <Text style={{fontSize: 20, fontWeight: 'bold'}}>Create Account</Text>
-          {/*store.session.uiError ?? <Text>{store.session.uiError}</Text>}
-          {!store.session.uiIsProcessing ? (
-            <>
-              <Button
-                title="Create new account"
-                onPress={() => store.session.login()}
-              />
-              <Button
-                title="Log in to an existing account"
-                onPress={() => navigation.navigate('Login')}
-              />
-            </>
-          ) : (
-            <ActivityIndicator />
-          )*/}
-        </View>
-      </Shell>
-    )
-  },
-)