Skip to content

Instantly share code, notes, and snippets.

@gsasouza
Created December 3, 2019 23:13
Show Gist options
  • Save gsasouza/ae5cbfbc61a3c677b4bc64389dc700a2 to your computer and use it in GitHub Desktop.
Save gsasouza/ae5cbfbc61a3c677b4bc64389dc700a2 to your computer and use it in GitHub Desktop.
const Container = styled.div`
.classe-1 {}
.classe-2 {}
`;
export default function App() {
return (
<Container>
<div className="classe-1"/>
<div className="classe-2"/>
</Container>
)
} (edited)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment