first commit

This commit is contained in:
Hope87
2021-05-26 13:35:57 +03:00
parent 21a43fbd61
commit f772d1c0fa
29 changed files with 737 additions and 62 deletions

11
src/pages/AuthPage.js Normal file
View File

@ -0,0 +1,11 @@
import React from 'react';
const AuthPage = () => {
return (
<div>
AuthPage
</div>
);
};
export default AuthPage;

View File

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

7
src/pages/HomePage.js Normal file
View File

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