'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 (
Monthly Yearly
{/* End Pricing Month */} {/* End Pricing Year */}
); }; export default Pricing;