cd5ec3ee3b
* tidy: refactor text
* tidy: refactor text
* fix display of vaults table
* feat: added unstyled select
* tidy: useToggle
* tidy: useToggle
* add vaults to types
* MP-2344: first unstyled version of Select
* fix: fixed the build
* MP-2344: progress on the Select
* MP-2344: almost finished the Select
* implement basic vault modal (no logic)
* 🍱 max + displaycur for token input
* Convert to BN for TokenInputs
* env: update wallet-connector
* fix: fixed build errors and relative imports
* fix: updated TokenInput
* tidy: format
* fix: BN instead of new BigNumber
---------
Co-authored-by: Linkie Link <linkielink.dev@gmail.com>
16 lines
385 B
TypeScript
16 lines
385 B
TypeScript
import Text from 'components/Text'
|
|
|
|
import packageInfo from '../../package.json'
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className='flex h-6 w-full items-center justify-center'>
|
|
<div className='w-full max-w-screen-lg text-right'>
|
|
<Text size='xs' className='opacity-50'>
|
|
v{packageInfo.version}
|
|
</Text>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|