Skip to content

Instantly share code, notes, and snippets.

@cristianoap
Created April 5, 2023 13:04
Show Gist options
  • Save cristianoap/2793460eb33d4ca3cbc2c8eba82f9789 to your computer and use it in GitHub Desktop.
Save cristianoap/2793460eb33d4ca3cbc2c8eba82f9789 to your computer and use it in GitHub Desktop.
Chakra UI
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