-
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 branch 'main' into refact-HotSongs
- Loading branch information
Showing
8 changed files
with
34 additions
and
38 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import React from "react"; | ||
// import AlbumPage from "../components/AlbumPage"; | ||
import AlbumPage from "../components/AlbumPage"; | ||
|
||
const album = () => { | ||
return <>{/* <AlbumPage /> */}</>; | ||
return <AlbumPage />; | ||
}; | ||
|
||
export default album; |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
import React from "react"; | ||
// import ConfirmEmail from "../components/Auth/confirmEmail"; | ||
import ConfirmEmail from "../components/Auth/ConfirmEmail"; | ||
|
||
const ConfirmEmailPage = () => { | ||
// return <ConfirmEmail />; | ||
return <></>; | ||
return <ConfirmEmail />; | ||
}; | ||
|
||
export default ConfirmEmailPage; |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
import React from "react"; | ||
// import LatestPage from "../components/LatestPage"; | ||
import LatestPage from "../components/LatestPage"; | ||
|
||
const latest = () => { | ||
// return <LatestPage />; | ||
return <></>; | ||
return <LatestPage />; | ||
}; | ||
|
||
export default latest; |
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
import React from "react"; | ||
// import Maintenance from "../components/Maintenance/Maintenance"; | ||
import Maintenance from "../components/Maintenance/Maintenance"; | ||
|
||
const maintenance = () => { | ||
// return ( | ||
// <div className=" h-screen"> | ||
// <Maintenance /> | ||
// </div> | ||
// ); | ||
return ( | ||
<div className=" h-screen"> | ||
<Maintenance /> | ||
</div> | ||
); | ||
|
||
return <></>; | ||
}; | ||
|
||
export default maintenance; |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import React from "react"; | ||
// import ResetPassword from "../components/Auth/ResetPassword"; | ||
import ResetPassword from "../components/Auth/ResetPassword"; | ||
|
||
const ResetPasswordPage = () => { | ||
// return ( | ||
// <> | ||
// <ResetPassword /> | ||
// </> | ||
// ); | ||
return ( | ||
<> | ||
<ResetPassword /> | ||
</> | ||
); | ||
|
||
return <></>; | ||
|
||
}; | ||
|
||
export default ResetPasswordPage; |
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 |
---|---|---|
@@ -1,14 +1,12 @@ | ||
import React from "react"; | ||
// import SignupPage from "../components/Auth/SignupPage"; | ||
import SignupPage from "../components/Auth/SignupPage"; | ||
|
||
const Signup = () => { | ||
// return ( | ||
// <div className="auth h-screen"> | ||
// <SignupPage /> | ||
// </div> | ||
// ); | ||
|
||
return <></>; | ||
return ( | ||
<div className="auth h-screen"> | ||
<SignupPage /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Signup; |