mars-v2-frontend/pages/earn.tsx
Linkie Link 27cdd1c954
Linter and prettier adjustments (#50)
* tidy: added eslintrc and prettierrc rules

* tidy: formated the files via ‚yarn format‘

* import sort improvements

* format script regex fix

* replace eslint import severity to warning

* remove staged file

Co-authored-by: Gustavo Mauricio <gustavo.mauricio58@gmail.com>
2022-11-09 10:04:06 +01:00

15 lines
300 B
TypeScript

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