import React, { useEffect, useState } from 'react' import Image from 'next/Image' import { useRouter } from 'next/router' import Header from '../../components/header/Header' import MenuItem from '@mui/material/MenuItem'; import Select, { SelectChangeEvent } from '@mui/material/Select'; import { GoBack, PldGraphView, PldTableView } from '../../styles/layouts/pld/PldView' import RenderIf from '../../utils/renderIf' import BasicButton from '../../components/buttons/basicButton/BasicButton'; import Chart from '../../components/graph/Chart'; import PageTitle from '../../components/pageTitle/PageTitle'; import Link from 'next/link'; export default function region() { const router = useRouter() const { region } = router.query const [page, setPage] = useState('table') const [age, setAge] = React.useState(''); const handleChange = (event: SelectChangeEvent) => { setAge(event.target.value); }; useEffect(() => { console.log(page) }, [page]) return (
{'< voltar para visão geral'}
Mês Nordeste Norte Sudeste Sul
2101 xxxx xxxx xxxx xxxx
2102 xxxx xxxx xxxx xxxx
2103 xxxx xxxx xxxx xxxx
2104 xxxx xxxx xxxx xxxx
2105 xxxx xxxx xxxx xxxx
2106 xxxx xxxx xxxx xxxx
2107 xxxx xxxx xxxx xxxx
2108 xxxx xxxx xxxx xxxx
2109 xxxx xxxx xxxx xxxx
2110 xxxx xxxx xxxx xxxx
2111 xxxx xxxx xxxx xxxx
2112 xxxx xxxx xxxx xxxx
2021 xxxx xxxx xxxx xxxx
Mín xxxx xxxx xxxx xxxx
Max xxxx xxxx xxxx xxxx
Desv Pad xxxx xxxx xxxx xxxx
setPage('perMouth')}>

Valores Diarios: R$100,00

setPage('perDate')}>

Valores Horários: R$100,00

setPage('table')}>{'< voltar para tabela pld'}
setPage('table')}>{'< voltar para tabela pld'}
) }