Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Created February 23, 2020 23:48
Show Gist options
  • Select an option

  • Save BrooklinJazz/ae9f856509838a583b49ab66d4547307 to your computer and use it in GitHub Desktop.

Select an option

Save BrooklinJazz/ae9f856509838a583b49ab66d4547307 to your computer and use it in GitHub Desktop.
your first styled component
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