Skip to content

Instantly share code, notes, and snippets.

@gtokman
Last active March 16, 2021 18:14
Show Gist options
  • Save gtokman/8940d122b42d276f6e0e567818abb378 to your computer and use it in GitHub Desktop.
Save gtokman/8940d122b42d276f6e0e567818abb378 to your computer and use it in GitHub Desktop.
Header React
const Header = styled.div` // 1
height: 100px;
width: 100%;
background: #fff;
display: flex; // 2
justify-content: center;
`;
function App() {
return (
<Container>
<Header> // 3
<h1>Hello World 😎</h1>
</Header>
<List>
{[0, 1, 2, 3, 5, 6, 7, 8, 9].map((item) => (
<Card>{item}</Card>
))}
</List>
</Container>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment