removal of unused var
This commit was merged in pull request #852.
This commit is contained in:
@@ -1,63 +1,63 @@
|
||||
import React, { useState } from "react";
|
||||
import React from "react";
|
||||
import { Link } from "react-router-dom";
|
||||
import authProfilePic from "../../../assets/images/auth-profile-picture.png";
|
||||
import profileBanner from "../../../assets/images/profile-cover.png";
|
||||
import collections from "../../../data/collectionplan_data.json";
|
||||
import marketPlace from "../../../data/marketplace_data.json";
|
||||
import products from "../../../data/product_data.json";
|
||||
import Layout from "../../Partials/Layout";
|
||||
import ActivitiesTab from "./ActivitiesTab";
|
||||
import CollectionTab from "./CollectionTab";
|
||||
import CreatedTab from "./CreatedTab";
|
||||
import HiddenProductsTab from "./HiddenProductsTab";
|
||||
import OnSaleTab from "./OnSaleTab";
|
||||
import OwnTab from "./OwnTab";
|
||||
// import collections from "../../../data/collectionplan_data.json";
|
||||
// import marketPlace from "../../../data/marketplace_data.json";
|
||||
// import products from "../../../data/product_data.json";
|
||||
// import CollectionTab from "./CollectionTab";
|
||||
// import CreatedTab from "./CreatedTab";
|
||||
// import HiddenProductsTab from "./HiddenProductsTab";
|
||||
// import OnSaleTab from "./OnSaleTab";
|
||||
// import OwnTab from "./OwnTab";
|
||||
|
||||
export default function AuthProfile() {
|
||||
const onSaleProducts = marketPlace.data;
|
||||
const CreatedSell = marketPlace.data;
|
||||
const CreatedBits = products.datas;
|
||||
// const onSaleProducts = marketPlace.data;
|
||||
// const CreatedSell = marketPlace.data;
|
||||
// const CreatedBits = products.datas;
|
||||
// const mainProducts = products.datas;
|
||||
const ownProducts = products.datas;
|
||||
const collectionProducts = collections.data;
|
||||
// const ownProducts = products.datas;
|
||||
// const collectionProducts = collections.data;
|
||||
|
||||
const tabs = [
|
||||
{
|
||||
id: 1,
|
||||
name: "onsale",
|
||||
content: "On Sale",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: "owned",
|
||||
content: "Owned",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: "created",
|
||||
content: "Created",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
name: "hidden",
|
||||
content: "Hidden",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
name: "collection",
|
||||
content: "Collection",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
name: "activity",
|
||||
content: "Activity",
|
||||
},
|
||||
];
|
||||
// const tabs = [
|
||||
// {
|
||||
// id: 1,
|
||||
// name: "onsale",
|
||||
// content: "On Sale",
|
||||
// },
|
||||
// {
|
||||
// id: 2,
|
||||
// name: "owned",
|
||||
// content: "Owned",
|
||||
// },
|
||||
// {
|
||||
// id: 3,
|
||||
// name: "created",
|
||||
// content: "Created",
|
||||
// },
|
||||
// {
|
||||
// id: 4,
|
||||
// name: "hidden",
|
||||
// content: "Hidden",
|
||||
// },
|
||||
// {
|
||||
// id: 5,
|
||||
// name: "collection",
|
||||
// content: "Collection",
|
||||
// },
|
||||
// {
|
||||
// id: 6,
|
||||
// name: "activity",
|
||||
// content: "Activity",
|
||||
// },
|
||||
// ];
|
||||
|
||||
const [tab, setTab] = useState(tabs[0].name);
|
||||
const tabHandler = (value) => {
|
||||
setTab(value);
|
||||
};
|
||||
// const [tab, setTab] = useState(tabs[0].name);
|
||||
// const tabHandler = (value) => {
|
||||
// setTab(value);
|
||||
// };
|
||||
return (
|
||||
<>
|
||||
<Layout>
|
||||
|
||||
Reference in New Issue
Block a user