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 { TextProps } from "react-native"; | |
| import { FontTypes } from "@theme/typography"; | |
| import S from "./styles"; | |
| export interface TypographyProps extends TextProps { | |
| variation?: keyof typeof FontTypes; | |
| } |
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 { Stack, Box, Button } from "@chakra-ui/react"; | |
| import { ButtonVariants } from "@/styles/components/button"; | |
| import { PaginationItem } from "./components/PaginationItem"; | |
| import { Arrow } from "./components/Arrow"; | |
| interface PaginationProps { | |
| totalCountOfRegisters: number; | |
| registerPerPage?: number; | |
| currentPage?: number; | |
| onPageChange: (page: number) => void; |
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
| Challenge 1: https://github.com/GabrielMerigo/chameleon-test | |
| Challenge 2: https://github.com/GabrielMerigo/code-to-review/pull/1 |
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
| { | |
| "content":[ | |
| { | |
| "id":7478, | |
| "origin":"IFOOD", | |
| "originOrderId":"119106", | |
| "logistics":{ | |
| "trackingUrl":"", | |
| "logisticsId":"", | |
| "logisticsShortReference":"", |
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
| //Dados Pessoais | |
| $('inp:nomeCompleto').val('PREENCHA_AQUI'); | |
| $('inp:dataNascimento').val('PREENCHA_AQUI'); | |
| $('inp:tipoContratacao').val('PREENCHA_AQUI'); | |
| $('inp:temNomeSocial').val('PREENCHA_AQUI'); | |
| $('inp:estadoCivil').val('PREENCHA_AQUI'); | |
| $('inp:telefoneParticular').val('PREENCHA_AQUI'); | |
| $('inp:emailParticular').val('PREENCHA_AQUI'); | |
| $('inp:nomeMae').val('PREENCHA_AQUI'); | |
| $('inp:nomePai').val('PREENCHA_AQUI'); |
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
| let admissaoColaborador = { | |
| empresa: new Number($('inp:codempresa').val()), | |
| tipoContrato: $("inp:tipoContratacao").val(), | |
| declaroInformacoesVerdadeiras: "Sim", | |
| dadosPessoais: { | |
| nome: $("inp:nomeCompleto").val(), | |
| dataNascimento: $("inp:dataNascimento").val(), | |
| sexo: $("inp:sexo").val(), | |
| codigoRacaCor: new Number($("inp:racaCor").val()), | |
| codigoEstadoCivil: new Number($("inp:estadoCivil").val()), |