import React from 'react'; import { getConfig } from '@edx/frontend-platform'; import { AppProvider } from '@edx/frontend-platform/react'; import { Helmet } from 'react-helmet'; import { Redirect, Route, Switch } from 'react-router-dom'; import { Logistration, NotFoundPage, registerIcons, UnAuthOnlyRoute, } from './common-components'; import configureStore from './data/configureStore'; import { AUTHN_PROGRESSIVE_PROFILING, LOGIN_PAGE, PAGE_NOT_FOUND, PASSWORD_RESET_CONFIRM, RECOMMENDATIONS, REGISTER_PAGE, RESET_PAGE, } from './data/constants'; import { updatePathWithQueryParams } from './data/utils'; import ForgotPasswordPage from './forgot-password'; import { ProgressiveProfiling } from './progressive-profiling'; import RecommendationsPage from './recommendations'; import ResetPasswordPage from './reset-password'; import './index.scss'; registerIcons(); const MainApp = () => ( } /> ); export default MainApp;