dashboard: add data in config

This commit is contained in:
nobohan 2021-09-28 09:04:37 +02:00
parent dc42f4e5d5
commit 426311aaaa
1 changed files with 6 additions and 2 deletions

View File

@ -3,6 +3,8 @@ export const dashboardData = {
name: 'Wasseiges',
area: 24.48,
population: 2996,
lat: 50.6173,
lon: 5.0206,
},
landuse: [
{
@ -56,7 +58,7 @@ export const dashboardData = {
interface landuse {
name: string,
area: number
area: number,
}
interface production {
@ -69,7 +71,9 @@ export type dashboardDataType = {
base: {
name: string,
area: number,
population: number
population: number,
lat: number,
lon: number,
},
landuse: landuse[],
production: production[],