From 941ebca647cb393cebdaf7ae818e41d2acac9ef7 Mon Sep 17 00:00:00 2001 From: Alex-NRCan Date: Fri, 29 Sep 2023 11:27:20 -0400 Subject: [PATCH] Small fix --- src/App.tsx | 4 ++-- src/chart/chart.d.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 02e610a..17d8741 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,4 +1,4 @@ -import { Chart } from './chart/chart'; +import { GeoChart } from './chart/chart'; /** * Create a container containing a map using the GeoView viewer @@ -8,7 +8,7 @@ import { Chart } from './chart/chart'; const App = (): JSX.Element => { return ( - + ); }; diff --git a/src/chart/chart.d.ts b/src/chart/chart.d.ts index 784ca1c..8c0a6c7 100644 --- a/src/chart/chart.d.ts +++ b/src/chart/chart.d.ts @@ -1,4 +1,4 @@ -export * from 'chart.js'; +export type * from 'chart.js'; export * from './chart-parser'; export * from './chart-types'; export * from './chart';