dashboard data: biomasse

This commit is contained in:
nobohan 2021-10-25 15:40:18 +02:00
parent f80abd8e32
commit e51b1ccfa1
1 changed files with 11 additions and 1 deletions

View File

@ -53,7 +53,11 @@ export const dashboardData = {
name: 'Vergers', name: 'Vergers',
area: 33.06, area: 33.06,
} }
] ],
biomasse : {
agri_area: 2070,
forest_area: 25
}
}; };
interface landuse { interface landuse {
@ -66,6 +70,11 @@ interface production {
area: number area: number
} }
interface biomasse {
agri_area: number,
forest_area: number
}
export type dashboardDataType = { export type dashboardDataType = {
base: { base: {
@ -77,5 +86,6 @@ export type dashboardDataType = {
}, },
landuse: landuse[], landuse: landuse[],
production: production[], production: production[],
biomasse: biomasse
// landuse: Record<string, landuse> // landuse: Record<string, landuse>
} }