32 lines
560 B
JavaScript
32 lines
560 B
JavaScript
import React from 'react'
|
|
import { View,Text,StyleSheet } from 'react-native'
|
|
|
|
const NotifCard = () => {
|
|
return (
|
|
<View style={styles.container}><Text>Search</Text></View>
|
|
)
|
|
}
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
backgroundColor: "#fff",
|
|
height: "100%",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
header: {
|
|
position: "fixed",
|
|
width:'100%',
|
|
top: 0,
|
|
},
|
|
footer: {
|
|
// position: "absolute",
|
|
bottom: 0,
|
|
width:'100%',
|
|
|
|
},
|
|
wrapper: {
|
|
height: "85%",
|
|
},
|
|
});
|
|
|
|
export default NotifCard |