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; index : www.armandphilippot.com
The frontend of my personal website.Armand Philippot
summaryrefslogtreecommitdiffstats
blob: 386c3fbe1fff2632fda7d9dea18cb2d0f3f44efd (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
25
26
27
28
29
30
31
32
33
34
35
36