You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
619 B
18 lines
619 B
import SecondaryPageLayout from '@/layouts/SecondaryPageLayout' |
|
import { forwardRef } from 'react' |
|
import { useTranslation } from 'react-i18next' |
|
import MediaUploadServiceSetting from './MediaUploadServiceSetting' |
|
|
|
const PostSettingsPage = forwardRef(({ index }: { index?: number }, ref) => { |
|
const { t } = useTranslation() |
|
|
|
return ( |
|
<SecondaryPageLayout ref={ref} index={index} title={t('Wallet')}> |
|
<div className="px-4 pt-2 space-y-4"> |
|
<MediaUploadServiceSetting /> |
|
</div> |
|
</SecondaryPageLayout> |
|
) |
|
}) |
|
PostSettingsPage.displayName = 'PostSettingsPage' |
|
export default PostSettingsPage
|
|
|