added some component to dashboard home page
This commit was merged in pull request #14.
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
export default function DashboardHome() {
|
||||
return (
|
||||
<div className=''>DashboardHome</div>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import { DashboardHome } from "../components"
|
||||
|
||||
export default function DashboardHomePage() {
|
||||
return (
|
||||
<div className=''>
|
||||
<DashboardHome />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
export default function DashboardLegals() {
|
||||
export default function DashboardLegalsPage() {
|
||||
return (
|
||||
<div>DashboardLegals</div>
|
||||
)
|
||||
@@ -1,4 +1,4 @@
|
||||
export default function Dashboardpayments() {
|
||||
export default function DashboardpaymentsPage() {
|
||||
return (
|
||||
<div>Dashboardpayments</div>
|
||||
)
|
||||
@@ -1,4 +1,4 @@
|
||||
export default function DashboardProfile() {
|
||||
export default function DashboardProfilePage() {
|
||||
return (
|
||||
<div>DashboardProfile</div>
|
||||
)
|
||||
@@ -1,4 +1,4 @@
|
||||
export default function DashboardVerification() {
|
||||
export default function DashboardVerificationPage() {
|
||||
return (
|
||||
<div>DashboardVerification</div>
|
||||
)
|
||||
+6
-6
@@ -1,10 +1,10 @@
|
||||
import HomePage from "./HomePage";
|
||||
import LoginPage from "./LoginPage";
|
||||
import GetStartedPage from "./GetStartedPage";
|
||||
import DashboardHome from "./DashboardHome";
|
||||
import DashboardLegals from "./DashboardLegals";
|
||||
import DashboardProfile from "./DashboardProfile";
|
||||
import DashboardVerification from "./DashboardVerification";
|
||||
import Dashboardpayments from "./DashboardPayments";
|
||||
import DashboardHomePage from "./DashboardHomePage";
|
||||
import DashboardLegalsPage from "./DashboardLegalsPage";
|
||||
import DashboardProfilePage from "./DashboardProfilePage";
|
||||
import DashboardVerificationPage from "./DashboardVerificationPage";
|
||||
import DashboardpaymentsPage from "./DashboardPaymentsPage";
|
||||
|
||||
export {HomePage, LoginPage, GetStartedPage, DashboardHome, DashboardLegals, DashboardProfile, DashboardVerification, Dashboardpayments}
|
||||
export {HomePage, LoginPage, GetStartedPage, DashboardHomePage, DashboardLegalsPage, DashboardProfilePage, DashboardVerificationPage, DashboardpaymentsPage}
|
||||
Reference in New Issue
Block a user