start removing account
[ProtonMail-WebClient.git] / packages / components / containers / general / LanguageAndTimeSection.tsx
blob02baf0b224f699b78043dacbb3c4b6d1a37e625b
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 = () => {
11     return (
12         <SettingsSection>
13             <LanguageSection locales={locales} />
14             <TimeFormatSection />
15             <WeekStartSection />
16             {IS_DATE_FORMAT_ENABLED && <DateFormatSection />}
17         </SettingsSection>
18     );
21 export default LanguageAndTimeSection;