about summary refs log tree commit diff
path: root/src/view/screens/Search.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/screens/Search.tsx')
-rw-r--r--src/view/screens/Search.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/view/screens/Search.tsx b/src/view/screens/Search.tsx
new file mode 100644
index 000000000..aea54051e
--- /dev/null
+++ b/src/view/screens/Search.tsx
@@ -0,0 +1,11 @@
+import React from 'react'
+import {Text, View} from 'react-native'
+import {ScreenParams} from '../routes'
+
+export const Search = ({params}: ScreenParams) => {
+  return (
+    <View style={{justifyContent: 'center', alignItems: 'center'}}>
+      <Text style={{fontSize: 20, fontWeight: 'bold'}}>Search</Text>
+    </View>
+  )
+}