about summary refs log tree commit diff
path: root/src/view/screens/Search.tsx
blob: aea54051ef4cb0c8d281f7b9680b95b0c9429030 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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>
  )
}