show storage
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import DefaulModal from '@/components/DefaulModal'
|
||||
import { useSharedStore } from '@/shared/store/sharedStore'
|
||||
import { useTranslation } from 'react-i18next'
|
||||
import { FC } from 'react'
|
||||
|
||||
const BuySpace: FC = () => {
|
||||
|
||||
const { t } = useTranslation()
|
||||
const { openBuySpace, setOpenBuySpace } = useSharedStore()
|
||||
console.log(openBuySpace);
|
||||
|
||||
return (
|
||||
<DefaulModal
|
||||
open={openBuySpace}
|
||||
close={() => setOpenBuySpace(false)}
|
||||
isHeader={true}
|
||||
title_header={t('space.title')}
|
||||
>
|
||||
<div className='mt-5'>
|
||||
|
||||
</div>
|
||||
</DefaulModal >
|
||||
)
|
||||
}
|
||||
|
||||
export default BuySpace
|
||||
Reference in New Issue
Block a user