Created
April 5, 2023 13:03
-
-
Save cristianoap/4e7ead2ff1d93e5a5769020a6942baac 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 { Heading } from '@chakra-ui/react' | |
import './App.css' | |
function App() { | |
return ( | |
<div className="App"> | |
<header className="App-header"> | |
<Heading>Meu primeiro projeto utilizando Chakra-ui!</Heading> | |
<a> | |
className="App-link" | |
href="https://github.com/camilacno/chakra-ui-tutorial" target="_blank" | |
rel="noopener noreferrer" Acesse o repositório | |
</a> | |
</header> | |
</div> | |
) | |
} | |
export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment