mars-v2-frontend/pages/earn.tsx
Linkie Link ee71260429
MP-1660: base components (#57)
* MP-1660: base components

* fix: removed lodash.isequal
2022-11-29 17:45:00 +01:00

15 lines
270 B
TypeScript

import React from 'react'
import Card from 'components/Card'
const Earn = () => {
return (
<div className='flex gap-4'>
<Card className='flex-1'>Yield Module</Card>
<Card className='w-[450px]'>Placeholder</Card>
</div>
)
}
export default Earn