forked from prasadhonrao/devcamper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request prasadhonrao#71 from prasadhonrao:feature/issue-70
Define basic page and component structure. Define route accordingly. Closes prasadhonrao#70
- Loading branch information
Showing
14 changed files
with
77 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const NotFoundPage = () => { | ||
return <div>Not Found Page</div>; | ||
}; | ||
|
||
export default NotFoundPage; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const AddCoursePage = () => { | ||
return <div>Add Course Page</div>; | ||
}; | ||
|
||
export default AddCoursePage; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const BootcampDetailsPage = () => { | ||
return <div>Bootcamp Details Page</div>; | ||
}; | ||
|
||
export default BootcampDetailsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const BootcampReviewsPage = () => { | ||
return <div>Bootcamp Reviews Page</div>; | ||
}; | ||
|
||
export default BootcampReviewsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const ManageBootcampPage = () => { | ||
return <div>Manage Bootcamp Page</div>; | ||
}; | ||
|
||
export default ManageBootcampPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const ManageCoursesPage = () => { | ||
return <div>Manage Courses Page</div>; | ||
}; | ||
|
||
export default ManageCoursesPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const ManageReviewsPage = () => { | ||
return <div>Manage Reviews Page</div>; | ||
}; | ||
|
||
export default ManageReviewsPage; |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const UserDetailsPage = () => { | ||
return ( | ||
<div> | ||
<p>User Details Page</p> | ||
<p>Add Update password functionality here</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default UserDetailsPage; |