import classNames from 'classnames' import style from '../list.module.css' import Apps from './Apps' import { getLocaleOnServer } from '@/i18n/server' import { useTranslation } from '@/i18n/i18next-serverside-config' const AppList = async () => { const locale = getLocaleOnServer() const { t } = await useTranslation(locale, 'app') return (
) } export default AppList