1 import SettingsSection from '@proton/components/containers/account/SettingsSection';
2 import { IS_DATE_FORMAT_ENABLED } from '@proton/shared/lib/i18n/dateFnLocale';
3 import { locales } from '@proton/shared/lib/i18n/locales';
5 import DateFormatSection from './DateFormatSection';
6 import LanguageSection from './LanguageSection';
7 import TimeFormatSection from './TimeFormatSection';
8 import WeekStartSection from './WeekStartSection';
10 const LanguageAndTimeSection = () => {
13 <LanguageSection locales={locales} />
16 {IS_DATE_FORMAT_ENABLED && <DateFormatSection />}
21 export default LanguageAndTimeSection;