Skip to content

Commit

Permalink
style: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtiti committed Jul 17, 2024
1 parent c665412 commit 6e39b9c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ export * from './CustomHead';
export * from './Table';
export * from './SearchBar';
export * from './TotalValueLocked';
export * from './Title';
export * from './TitleBanner';
6 changes: 2 additions & 4 deletions src/containers/Dashboard/index.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import { SearchBar, Table, Title } from '~/components';

const Dashboard = () => {
export const Dashboard = () => {
return (
<section>
<header>
<Title title="Chain list" />
<Title title='Chain list' />
<SearchBar />
</header>
<Table />
</section>
);
};

export default Dashboard;
5 changes: 2 additions & 3 deletions src/containers/Landing/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { styled } from '@mui/material/styles';

import Dashboard from '../Dashboard';
import { LockedAssets } from '../LockedAssets';
import { TitleBanner } from '~/components/TitleBanner';
import { Dashboard, LockedAssets } from '~/containers';
import { TitleBanner } from '~/components';

export const Landing = () => {
return (
Expand Down
1 change: 1 addition & 0 deletions src/containers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ export * from './Header';
export * from './Layout';
export * from './Landing';
export * from './Dashboard';
export * from './LockedAssets';
Empty file added src/utils/misc.ts
Empty file.

0 comments on commit 6e39b9c

Please sign in to comment.