import { ComponentType } from 'react' import { useTranslation } from 'react-i18next' import { PageHeaderProps } from '@dao-dao/types' import { ButtonLink } from '../buttons' import { ErrorPage } from '../error/ErrorPage' export type DaoNotFoundProps = { PageHeaderContent: ComponentType } export const DaoNotFound = ({ PageHeaderContent }: DaoNotFoundProps) => { const { t } = useTranslation() return ( <> {t('button.returnHome')} ) }