From 430941b6861053b001de2b0c5d117657fa11a6f3 Mon Sep 17 00:00:00 2001 From: titix Date: Wed, 17 Jul 2024 15:47:56 -0300 Subject: [PATCH] fix: resolve dashboard export --- src/containers/Dashboard/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/Dashboard/index.tsx b/src/containers/Dashboard/index.tsx index 6548cc7..e968b94 100644 --- a/src/containers/Dashboard/index.tsx +++ b/src/containers/Dashboard/index.tsx @@ -2,7 +2,7 @@ import { useState } from 'react'; import { SearchBar, Table, Title } from '~/components'; import { useData } from '~/hooks'; -const Dashboard = () => { +export const Dashboard = () => { const { ecosystemData } = useData(); const [searchTerm, setSearchTerm] = useState('');