Skip to content

Commit

Permalink
style: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtiti committed Jul 16, 2024
1 parent a457e01 commit 35621eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/hooks/useContext/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export * from './useStateContext';
export * from './useData';
export * from './useTheme';
4 changes: 2 additions & 2 deletions src/pages/[chain]/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { GetStaticPaths, GetStaticProps } from 'next';
import { useEffect } from 'react';
import { GetStaticPaths, GetStaticProps } from 'next';

import { EcosystemChainData } from '~/types';
import { CustomHead } from '~/components';
import { useData } from '~/hooks/useContext/useData';
import { useData } from '~/hooks';
import { fetchEcosystemData } from '~/utils';

interface ChainProps {
Expand Down

0 comments on commit 35621eb

Please sign in to comment.