first commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import ActiveBids from "../components/ActiveBids";
|
||||
|
||||
export default function AcitveBidsPage() {
|
||||
return (
|
||||
<>
|
||||
<ActiveBids />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import AuthProfile from "../components/AuthPages/AuthProfile";
|
||||
|
||||
export default function AuthProfilePage() {
|
||||
return <AuthProfile />;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import CollectionItem from "../components/MyCollection/CollectionItem";
|
||||
|
||||
export default function CollectionItemPage() {
|
||||
return <CollectionItem />;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import ForgotPassword from "../components/AuthPages/ForgotPassword";
|
||||
|
||||
export default function ForgotPasswordPages() {
|
||||
return (
|
||||
<>
|
||||
<ForgotPassword />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import History from "../components/History";
|
||||
|
||||
export default function HistoryPage() {
|
||||
return (
|
||||
<>
|
||||
<History />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import Home from "../components/Home";
|
||||
|
||||
export default function HomePages() {
|
||||
return (
|
||||
<>
|
||||
<Home />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import React from "react";
|
||||
import Login from "../components/AuthPages/Login";
|
||||
|
||||
function LoginPage() {
|
||||
return (
|
||||
<>
|
||||
<Login />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default LoginPage;
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import MarketPlace from "../components/MarketPlace";
|
||||
|
||||
export default function MarketPlacePage() {
|
||||
return (
|
||||
<>
|
||||
<MarketPlace />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import MyCollection from "../components/MyCollection";
|
||||
|
||||
export default function MyCollectionPage() {
|
||||
return <MyCollection />;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import MyWallet from "../components/MyWallet";
|
||||
|
||||
export default function MyWalletPage() {
|
||||
return (
|
||||
<>
|
||||
<MyWallet />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import Notification from "../components/Notification";
|
||||
|
||||
export default function notification() {
|
||||
return (
|
||||
<>
|
||||
<Notification />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import Saved from "../components/Saved";
|
||||
|
||||
export default function SavedPage() {
|
||||
return (
|
||||
<>
|
||||
<Saved />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import Sell from "../components/Sell";
|
||||
|
||||
export default function SellPage() {
|
||||
return <Sell />;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import Settings from "../components/Settings";
|
||||
|
||||
export default function SettingsPage() {
|
||||
return (
|
||||
<>
|
||||
<Settings />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import ShopDetails from "../components/ShopDetails";
|
||||
|
||||
export default function ShopDetailsPage() {
|
||||
return (
|
||||
<>
|
||||
<ShopDetails />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import React from "react";
|
||||
import SignUp from "../components/AuthPages/SignUp";
|
||||
|
||||
function SignupPage() {
|
||||
return (
|
||||
<>
|
||||
<SignUp />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default SignupPage;
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import UpdatePassword from "../components/AuthPages/UpdatePassword";
|
||||
|
||||
export default function UpdatePasswordPages() {
|
||||
return (
|
||||
<>
|
||||
<UpdatePassword />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import UploadProduct from "../components/UploadProduct";
|
||||
|
||||
export default function UploadProductPage() {
|
||||
return <UploadProduct />;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import UserProfile from "../components/AuthPages/UserProfile";
|
||||
|
||||
export default function UserProfilePage() {
|
||||
return <UserProfile />;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import VerifyYou from "../components/AuthPages/VerifyYou";
|
||||
|
||||
export default function VerifyYouPages() {
|
||||
return <VerifyYou />;
|
||||
}
|
||||
Reference in New Issue
Block a user