blob: 7d5516c306a18cd12e59c0045386dd09e970b5cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { CogIcon } from '@components/Icons';
import ThemeToggle from '@components/Settings/ThemeToggle/ThemeToggle';
import { t } from '@lingui/macro';
import styles from './Settings.module.scss';
const Settings = () => {
return (
<>
<div className={styles.title}>
<CogIcon /> {t`Settings`}
</div>
<ThemeToggle />
</>
);
};
export default Settings;
|