Files
2023-09-18 13:54:47 +05:30

13 lines
185 B
Plaintext

import { View, StyleSheet, Text } from 'react-native';
export default function(){
return <View style={css.wrapper}></View> ;
}
const css = StyleSheet.create({
wrapper:{
}
});