Create new page Blog
This commit is contained in:
@ -39,6 +39,7 @@ import { PassingTests } from "./pages/quiz/PassingTests";
|
||||
import "./assets/global.scss";
|
||||
import "./fonts/stylesheet.css";
|
||||
import "bootstrap/dist/css/bootstrap.min.css";
|
||||
import Blog from "./pages/Blog/Blog";
|
||||
|
||||
const App = () => {
|
||||
return (
|
||||
@ -50,7 +51,7 @@ const App = () => {
|
||||
<Route exact path="/worker/:id" element={<FreeDevelopers />} />
|
||||
<Route
|
||||
exact
|
||||
path="/tracker/:id"
|
||||
path="/tracker/task/:id"
|
||||
element={<TicketFullScreen />}
|
||||
></Route>
|
||||
<Route exact path="/auth-candidate" element={<AuthForCandidate />} />
|
||||
@ -60,6 +61,8 @@ const App = () => {
|
||||
element={<RegistrationForCandidate />}
|
||||
/>
|
||||
|
||||
<Route exact path="/blog" element={<Blog />}></Route>
|
||||
|
||||
<Route exact path="/candidate/:id" element={<Candidate />} />
|
||||
<Route exact path="/candidate/:id/form" element={<FormPage />} />
|
||||
<Route path="/:userId/calendar" element={<Calendar />} />
|
||||
|
Reference in New Issue
Block a user