add filter

This commit is contained in:
Hope87
2021-06-01 17:28:09 +03:00
parent bc5af60fac
commit 0c3d99f039
13 changed files with 77 additions and 159 deletions

View File

@ -1,5 +1,5 @@
import React from 'react';
import Auth from '../components/Auth';
import Auth from '../components/Auth/Auth';
const AuthPage = ({ setAuth }) => {
return <Auth setAuthed={setAuth} />;

View File

@ -1,6 +1,6 @@
import React from 'react';
import Candidate from '../components/Candidate';
import Candidate from '../components/Candidate/Candidate';
const CandidatePage = () => <Candidate />;

View File

@ -1,6 +1,6 @@
import React from 'react';
import Home from '../components/Home';
import Home from '../components/Home/Home';
const HomePage = () => <Home />;