Created
February 23, 2020 23:48
-
-
Save BrooklinJazz/ae9f856509838a583b49ab66d4547307 to your computer and use it in GitHub Desktop.
your first styled component
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 { Text } from 'react-native'; | |
| import styled from "styled-components/native" | |
| const Container = styled.View` | |
| flex: 1; | |
| justify-content: center; | |
| align-items: center; | |
| ` | |
| export default function App() { | |
| return ( | |
| <Container> | |
| <Text>Open up App.js to start working on your app!</Text> | |
| </Container> | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment