Files
CHIEFSOFT\ameye d8c7ec4866 first commit
2025-02-12 23:25:43 -05:00

33 lines
753 B
React

'use client'
import React from "react";
import { Tab, Tabs, TabList, TabPanel } from "react-tabs";
import PricingMonthly from "./PricingMonthly";
import PricingYearly from "./PricingYearly";
const Pricing = () => {
return (
<div>
<Tabs>
<TabList className="nav nav-tabs justify-content-center pricing-nav-three">
<Tab>Monthly</Tab>
<Tab>Yearly</Tab>
</TabList>
<div className="pricing-table-area-four">
<TabPanel>
<PricingMonthly />
</TabPanel>
{/* End Pricing Month */}
<TabPanel>
<PricingYearly />
</TabPanel>
{/* End Pricing Year */}
</div>
</Tabs>
</div>
);
};
export default Pricing;