'use client' import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import s from './style.module.css' import useTheme from '@/hooks/use-theme' import cn from '@/utils/classnames' import { Theme } from '@/types/app' const i18nPrefix = 'explore.sidebar.noApps' const NoApps: FC = () => { const { t } = useTranslation() const { theme } = useTheme() return (
) } export default React.memo(NoApps)