mars-v2-frontend/src/components/pages/lend.tsx

14 lines
261 B
TypeScript
Raw Normal View History

import Card from 'components/Card'
import Tab from 'components/Earn/Tab'
export default function Lendpage({ params }: { params: PageParams }) {
return (
<>
<Tab params={params} />
<Card title='Lend'>
<></>
</Card>
</>
)
}