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

20 lines
649 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 { AccumulatedSavingsView } from '../styles/layouts/economy/accumulatedSavings/AccumulatedSavingsView'
export default function AccumulatedSavings() {
return (
<AccumulatedSavingsView>
<Header name='' />
<PageTitle title='Economia Acumulada' subtitle='Economia Bruta Estimada e Acumulada anual (Valores em R$ mil)' />
<section>
<Chart title='Indicador de custo' />
</section>
</AccumulatedSavingsView>
)
}