mobile version fix

This commit is contained in:
2022-06-01 19:59:54 +03:00
parent 4bdfdd58ec
commit 5b9ccfbb2e
8 changed files with 74 additions and 40 deletions

View File

@ -1,12 +1,9 @@
import React from 'react'
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom'
// import { useSelector } from 'react-redux'
// import { selectAuth } from './redux/outstaffingSlice'
import 'bootstrap/dist/css/bootstrap.min.css'
import './fonts/stylesheet.css'
import { ProtectedRoute } from './components/ProtectedRoute/ProtectedRoute'
// import { YMInitializer } from 'react-yandex-metrika'
import { ProtectedRoute } from './components/ProtectedRoute/ProtectedRoute'
import AuthPageForDevelopers from './pages/AuthPageForDevelopers'
import AuthPageForPartners from './pages/AuthPageForPartners'
@ -16,16 +13,13 @@ import CalendarPage from './pages/CalendarPage'
import ReportPage from './pages/ReportFormPage.js'
import FormPage from './pages/FormPage.js'
import SingleReportPage from './pages/SingleReportPage'
// import { Highlighter } from './pages/CodeSnippetPage'
import { QuizPage } from './pages/quiz/QuizPage'
import { InterjacentPage } from './pages/quiz/InterjacentPage'
import { QuizTestPage } from './pages/quiz/QuizTestPage'
// import { Instruction } from './components/features/quiz/Instructions'
import { InstructionPage } from './pages/quiz/InstructionPage'
import { ResultPage } from './pages/quiz/ResultPage'
const App = (props) => {
// const isAuth = useSelector(selectAuth)
const App = () => {
return (
<>
<h1>IT Аутстаффинг в России</h1>
@ -65,17 +59,6 @@ const App = (props) => {
<ProtectedRoute component={() => <div>Page not found</div>} />
</Switch>
</Router>
{/* <YMInitializer
accounts={[84188125]}
options={{
clickmap:true,
trackLinks:true,
accurateTrackBounce:true,
webvisor:true
}}
version="2"
/> */}
</>
)
}