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 React from 'react' | |
| import ReactDOM from 'react-dom/client' | |
| import './index.css' | |
| import App from './App' | |
| import { ChakraProvider, extendTheme } from '@chakra-ui/react' | |
| const theme = extendTheme({ |
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 { Box, Container, Heading } from '@chakra-ui/react' | |
| const boxStyles = { | |
| p: '10px', | |
| bg: 'blue.400', | |
| color: 'white', | |
| m: '10px', | |
| textAlign: 'center', | |
| borderRadius: '5px', |
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" |
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> |
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 React from 'react' | |
| import ReactDOM from 'react-dom/client' | |
| import './index.css' | |
| import App from './App' | |
| import { ChakraProvider } from '@chakra-ui/react' | |
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
| <div class="page"> | |
| <div class="marvel-device nexus5"> | |
| <div class="top-bar"></div> | |
| <div class="sleep"></div> | |
| <div class="volume"></div> | |
| <div class="camera"></div> | |
| <div class="screen"> | |
| <div class="screen-container"> | |
| <div class="status-bar"> | |
| <div class="time"></div> |
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
| module Moip { | |
| interface ProdutoSkel { | |
| nome: string, | |
| descricao: string, | |
| valor: number | |
| } | |
| interface PagadorSkel { | |
| pagador_nome: string |
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
| /* | |
| * Updated to use the function-based method described in http://www.phpied.com/social-button-bffs/ | |
| * Better handling of scripts without supplied ids. | |
| * | |
| * N.B. Be sure to include Google Analytics's _gaq and Facebook's fbAsyncInit prior to this function. | |
| */ | |
| (function(doc, script) { | |
| var js, | |
| fjs = doc.getElementsByTagName(script)[0], |