Commit 619e2b60 authored by Pramodh Rajapakse's avatar Pramodh Rajapakse

created base container for screens

parent 6b93e2ad
import React from 'react';
import { StyleSheet, View } from 'react-native';
export const AppContainer = (props) => {
return(
<View style={styles.container}>
{props.children}
</View>
)
}
const styles = StyleSheet.create({
container:{
flex: 1,
marginHorizontal: 20
}
});
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