mirror of
https://github.com/harish2704/dotFiles.git
synced 2026-09-10 07:11:09 +00:00
13 lines
185 B
Plaintext
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:{
|
|
|
|
}
|
|
});
|