Skip to content
Snippets Groups Projects
Commit 072a3661 authored by Chif Gergő's avatar Chif Gergő
Browse files

Resolve more errors

parent c034bf18
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,9 @@ import Statistics from './pages/Statistics';
import Groups from './pages/Groups';
import News from './pages/News';
import Homework from './pages/Homework';
import Applications from './pages/Applications';
import EventDetail from './pages/EventDetail';
import ApplicantProfile from './pages/ApplicantProfile';
const Main = () => (
<Switch>
......@@ -22,6 +25,9 @@ const Main = () => (
<Route path='/statistics' component={Statistics} />
<Route path='/groups' component={Groups} />
<Route path='/homework' component={Homework} />
<Route path='/events/:id' component={EventDetail} />
<Route path='/applications' component={Applications} />
<Route path='/applicant/:id' component={ApplicantProfile} />
<Route component={NotFound} />
</Switch>
);
......
......@@ -12,6 +12,9 @@ const rootReducer = combineReducers({
news: NewsReducer,
newNews: AddNewsReducer,
selectedNews: EditNewsReducer,
events: EventReducer,
trainees: TraineeReducer,
notes: NoteReducer,
homeworks: HomeworksReducer,
newTask: AddTaskReducer,
newSolution: AddSolutionReducer,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment