Last active
March 12, 2020 01:18
-
-
Save jebai0521/628e3f917110b47f2e056c6e0be827f1 to your computer and use it in GitHub Desktop.
container-template.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import {View} from 'react-native'; | |
| export default class App extends React.Component { | |
| render() { | |
| return <View style={{flex: 1, backgroundColor: 'red'}} />; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment