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