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('');