import { CogIcon } from '@components/Icons'; import ThemeToggle from '@components/Settings/ThemeToggle/ThemeToggle'; import { useIntl } from 'react-intl'; import AckeeSelect from './AckeeSelect/AckeeSelect'; import PrismThemeToggle from './PrismThemeToggle/PrismThemeToggle'; import ReduceMotion from './ReduceMotion/ReduceMotion'; import styles from './Settings.module.scss'; const Settings = () => { const intl = useIntl(); return ( <>
{' '} {intl.formatMessage({ defaultMessage: 'Settings', description: 'Settings: modal title', id: 'bHEmkY', })}
); }; export default Settings; w.armandphilippot.com
The frontend of my personal website.Armand Philippot
aboutsummaryrefslogtreecommitdiffstats
blob: 24209ac1fe7c071c13ba4ea516cb3edb1aa1f158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24