Created
December 3, 2019 23:13
-
-
Save gsasouza/ae5cbfbc61a3c677b4bc64389dc700a2 to your computer and use it in GitHub Desktop.
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
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