import React, { Suspense } from 'react'; import './styles.scss'; import { BrowserRouter as Router, Switch, Route } from 'react-router-dom'; import { Home } from 'pages'; import { Layout, ConfigProvider } from 'antd'; import { ErrorBoundary } from 'components'; import { SWRConfig } from 'swr'; import { SWR_CONFIG } from 'configs/swr-config'; import nlNL from 'antd/es/locale/nl_NL'; const { Content } = Layout; export const App = () => { return ( loading

}> {/* A looks through its children s and renders the first one that matches the current URL. */}
); };