Skip to content

Instantly share code, notes, and snippets.

View mnzsss's full-sized avatar

Gabriel Menezes mnzsss

View GitHub Profile
/* eslint-disable indent */
import { Stack, Text } from '@chakra-ui/react'
import { PaginationItem } from './PaginationItem'
type PaginationProps = {
onPageChange: (page: number) => void
currentPage: number
lastPage: number
nextPages: number[]
@mnzsss
mnzsss / .eslintrc.json
Last active July 8, 2021 22:24
Initial Configs Eslint, Prettier and Editorconfig
{
"env": {
"es2020": true,
"node": true,
"jest": true
},
"extends": [
"standard",
"plugin:@typescript-eslint/recommended",
"prettier",