feat: security section in profile setting

This commit is contained in:
2025-07-26 17:55:43 +03:30
parent bcb71666fa
commit 03d18af0e4
5 changed files with 151 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import {
import './App.css';
import { useTranslation } from 'react-i18next';
import { LanguageManager } from './components/LanguageManager';
import { UserSecurity } from './features/profile/components/UserSecurity';
function App() {
const { t } = useTranslation();
@@ -17,6 +18,7 @@ function App() {
<>
<CssBaseline />
<LanguageManager />
<UserSecurity />
<div style={{ padding: '16px' }}>
<Typography variant="h3">{t('helloWorld')}</Typography>
<Box