'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
Save 30% on annual plan
{/* End Pricing Month */} {/* End Pricing Year */}
); }; export default Pricing;