position_id filter, favicon, description

This commit is contained in:
kurpfish
2021-08-12 12:40:47 +03:00
parent 9195969411
commit 1fb18ada8e
8 changed files with 28 additions and 10 deletions

View File

@ -13,7 +13,8 @@ import ReportPage from './pages/ReportFormPage.js';
import FormPage from './pages/FormPage.js';
const App = () => {
return (
return (<>
<h1>IT Аутстаффинг в России</h1>
<Router>
<Switch>
<Route path='/authdev' exact>
@ -30,6 +31,7 @@ const App = () => {
<ProtectedRoute component={()=><div>Page not found</div>} />
</Switch>
</Router>
</>
)
}