import Spinner from '@components/atoms/loaders/spinner'; import Modal, { type ModalProps } from '@components/molecules/modals/modal'; import dynamic from 'next/dynamic'; import { FC } from 'react'; import { useIntl } from 'react-intl'; import { type SettingsFormProps } from '../forms/settings-form'; import styles from './settings-modal.module.scss'; const DynamicSettingsForm = dynamic( () => import('@components/organisms/forms/settings-form'), { loading: () => , ssr: false, } ); export type SettingsModalProps = Pick & Pick< SettingsFormProps, 'ackeeStorageKey' | 'motionStorageKey' | 'tooltipClassName' >; /** * SettingsModal component * * Render a modal with settings options. */ const SettingsModal: FC = ({ className = '', ...props }) => { const intl = useIntl(); const title = intl.formatMessage({ defaultMessage: 'Settings', description: 'SettingsModal: title', id: 'gPfT/K', }); return ( ); }; export default SettingsModal; >Collection of small JS/React/Angular applications.Armand Philippot aboutsummaryrefslogtreecommitdiffstats log msg author committer range path: root/htdocs/src/js/i18n/i18n.jsblob: 6bdc7cd1c4f0f01587b66736972809afa9fecbee (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 37 38 39 40 41 42
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 37 38 39 40 41 42