Commit 4bbcb277 by tungnq

TODO:Hoàn thiện xong khung code cho các màn status

parent d61c61bf
import React from 'react';
import {Text, View, StyleSheet} from 'react-native';
import StatusScreenSendDocumentView from './view';
const StatusScreenSendDocument = (props) => {
return (
<StatusScreenSendDocumentView />
);
};
export default StatusScreenSendDocument;
import { StyleSheet, Text, View } from 'react-native'
const styles = StyleSheet.create({})
export default styles
import React from 'react';
import {Text, View, TouchableOpacity, StyleSheet} from 'react-native';
const StatusScreenSendDocumentView = (props) => {
const { } = props;
return (
<View
style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center',
}}>
<TouchableOpacity>
<Text>StatusScreenSendDocument</Text>
</TouchableOpacity>
</View>
);
};
export default StatusScreenSendDocumentView;
const styles = StyleSheet.create({})
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment