smartEnergyView-frontend/pages/estimatedCost.tsx
joseCorte-exe 3736d6674d 🚑 fix code
2022-05-10 12:13:03 -03:00

20 lines
585 B
TypeScript

import React from 'react'
import Chart from '../src/components/graph/Chart'
import Header from '../src/components/header/Header'
import PageTitle from '../src/components/pageTitle/PageTitle'
import { EstimatedCostView } from '../styles/layouts/economy/estimatedCost/EstimatedCostView'
export default function EstimatedCost() {
return (
<EstimatedCostView>
<Header name='' />
<PageTitle title='Custos Estimados' subtitle='Comparativo de Custo Estimado' />
<section>
<Chart title='Indicador de custo' />
</section>
</EstimatedCostView>
)
}