2020-09-06 02:27:01 +02:00
|
|
|
import { IntlProvider } from 'react-intl';
|
2022-11-22 07:32:55 +01:00
|
|
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
2020-09-09 05:46:31 +02:00
|
|
|
import useLocale from 'hooks/useLocale';
|
2022-10-31 19:02:37 +01:00
|
|
|
import useConfig from 'hooks/useConfig';
|
2022-11-22 07:32:55 +01:00
|
|
|
import 'react-basics/dist/styles.css';
|
2022-12-09 08:43:43 +01:00
|
|
|
import 'styles/variables.css';
|
2020-08-02 06:20:52 +02:00
|
|
|
import 'styles/index.css';
|
2021-05-20 22:21:30 +02:00
|
|
|
import '@fontsource/inter/400.css';
|
|
|
|
import '@fontsource/inter/600.css';
|
2020-09-07 10:22:16 +02:00
|
|
|
|
2022-11-22 07:32:55 +01:00
|
|
|
const client = new QueryClient();
|
|
|
|
|
2020-07-17 10:03:38 +02:00
|
|
|
export default function App({ Component, pageProps }) {
|
2022-12-09 08:43:43 +01:00
|
|
|
const { locale, messages } = useLocale();
|
2022-10-31 19:02:37 +01:00
|
|
|
useConfig();
|
|
|
|
|
|
|
|
const Wrapper = ({ children }) => <span className={locale}>{children}</span>;
|
2022-10-28 01:42:57 +02:00
|
|
|
|
2022-10-28 19:34:50 +02:00
|
|
|
if (process.env.uiDisabled) {
|
2022-10-28 01:42:57 +02:00
|
|
|
return null;
|
|
|
|
}
|
2020-08-05 07:45:05 +02:00
|
|
|
|
|
|
|
return (
|
2022-11-22 07:32:55 +01:00
|
|
|
<QueryClientProvider client={client}>
|
|
|
|
<IntlProvider locale={locale} messages={messages[locale]} textComponent={Wrapper}>
|
2022-12-09 08:43:43 +01:00
|
|
|
<Component {...pageProps} />
|
2022-11-22 07:32:55 +01:00
|
|
|
</IntlProvider>
|
|
|
|
</QueryClientProvider>
|
2020-08-05 07:45:05 +02:00
|
|
|
);
|
2020-07-17 10:03:38 +02:00
|
|
|
}
|