// @mui material components import Grid from "@mui/material/Grid" // ThreeD Garden components import MDBox from "~/components/mui/MDBox" // ThreeD Garden examples components import DefaultPricingCard from "~/components/elements/Cards/PricingCards/DefaultPricingCard" // ThreeD Garden context import { useMaterialUIController } from "~/context" function PricingCards({ prices }: { prices: string[] }): JSX.Element { const [controller] = useMaterialUIController() const { darkMode } = controller const [starter, premium, enterprise] = prices return ( ) } export default PricingCards