From 45211bf4ce126f0d3012e230f5d1976431f7eb15 Mon Sep 17 00:00:00 2001 From: nobohan Date: Wed, 22 Sep 2021 10:58:17 +0200 Subject: [PATCH] #16 add dashboard config objet in the patches --- patches/frontend/src/conf/dashboard.config.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 patches/frontend/src/conf/dashboard.config.ts diff --git a/patches/frontend/src/conf/dashboard.config.ts b/patches/frontend/src/conf/dashboard.config.ts new file mode 100644 index 0000000..d6429c3 --- /dev/null +++ b/patches/frontend/src/conf/dashboard.config.ts @@ -0,0 +1,14 @@ +export const dashboardData = { + base: { + area: 34.23, + population: 3456, + }, + landuse: { + agricultural: { + area: 1234, + }, + forested: { + area: 23, + } + } +}; \ No newline at end of file