import { useState } from "react" import { Label, Switch } from "@medusajs/ui" export default function SwitchControlled() { const [checked, setChecked] = useState(false) return (