ee71260429
* MP-1660: base components * fix: removed lodash.isequal
15 lines
270 B
TypeScript
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
|