Created
April 5, 2023 13:04
-
-
Save cristianoap/2793460eb33d4ca3cbc2c8eba82f9789 to your computer and use it in GitHub Desktop.
Chakra UI
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 { Container, Heading } from '@chakra-ui/react' | |
function App() { | |
return ( | |
<Container | |
textAlign="center" | |
display="flex" | |
flexDirection="column" | |
alignItems="center" | |
justifyContent="center" | |
h="100vh" | |
> | |
<Heading>Meu primeiro projeto utilizando Chakra-ui!</Heading> | |
<a | |
href="https://github.com/camilacno/chakra-ui-tutorial" | |
target="_blank" | |
rel="noopener noreferrer" | |
> | |
Acesse o repositório | |
</a> | |
</Container> | |
) | |
} | |
export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment