import React from 'react'; import { useTranslation } from 'react-i18next'; import { Card } from 'semantic-ui-react'; import UsersTable from '../../components/UsersTable'; const User = () => { const { t } = useTranslation(); return (
{t('user.title')}
); }; export default User;