import React from "react"; import { useParams } from "react-router-dom"; import Breadcrumb from "../../components/common/Breadcrumb"; import Profile from "../../components/Tenanat/profile"; const TenantDetails = () => { const tabs = [ { id: "navs-left-home", label: "Profile", icon: "bx bx-user-circle", iconSize: "bx-sm", content: , }, { id: "navs-left-org", label: "Organization", icon: "bx bxs-business", iconSize: "bx-sm", // change to bx-xs, bx-md, bx-lg content: ( <>

Icing pastry pudding oat cake. Lemon drops cotton candy caramels cake...

Tootsie roll fruitcake cookie. Dessert topping pie...

), }, { id: "navs-left-profile", label: "Settings", icon: "bx bx-cog", iconSize: "bx-sm", content: ( <>

Donut dragée jelly pie halvah. Danish gingerbread bonbon cookie...

Jelly-o jelly beans icing pastry cake cake lemon drops...

), }, { id: "navs-left-messages", label: "Messages", icon: "bx bx-message-rounded", iconSize: "bx-sm", content: ( <>

Oat cake chupa chups dragée donut toffee. Sweet cotton candy jelly beans...

Cake chocolate bar cotton candy apple pie tootsie roll...

), }, { id: "navs-left-bill", label: "Bill", icon: "bx bx-receipt", iconSize: "bx-sm", content: ( <>

Oat cake chupa chups dragée donut toffee. Sweet cotton candy jelly beans...

Cake chocolate bar cotton candy apple pie tootsie roll...

), }, ]; return (
    {tabs.map((tab, index) => (
  • ))}
{tabs.map((tab, index) => (
{tab.content}
))}
); }; export default TenantDetails;