20 lines
649 B
TypeScript
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>
|
|
)
|
|
}
|