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

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