mars-v2-frontend/src/pages/PortfolioPage.tsx
Bob van der Helm ab0e184a39
refactor components folder (#734)
* refactor components folder

* create leverage slider variants
2024-01-16 15:35:18 +01:00

18 lines
605 B
TypeScript

import MigrationBanner from 'components/common/MigrationBanner'
import AccountOverview from 'components/portfolio/Overview'
import PortfolioSummary from 'components/portfolio/Overview/Summary'
import PortfolioIntro from 'components/portfolio/PortfolioIntro'
import ShareBar from 'components/common/ShareBar'
export default function PortfolioPage() {
return (
<div className='flex flex-wrap w-full gap-6'>
<MigrationBanner />
<PortfolioIntro />
<PortfolioSummary />
<AccountOverview />
<ShareBar text='Have a look at this @mars_protocol portfolio!' />
</div>
)
}