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