first commit
This commit is contained in:
11
src/pages/AuthPage.js
Normal file
11
src/pages/AuthPage.js
Normal file
@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
|
||||
const AuthPage = () => {
|
||||
return (
|
||||
<div>
|
||||
AuthPage
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AuthPage;
|
7
src/pages/CandidatePage.js
Normal file
7
src/pages/CandidatePage.js
Normal 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
7
src/pages/HomePage.js
Normal file
@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
import Home from '../components/Home'
|
||||
|
||||
const HomePage = () => <Home />
|
||||
|
||||
export default HomePage;
|
Reference in New Issue
Block a user