import { Tabs, Text } from "@medusajs/ui" import { useState } from "react" export default function TabsControlled() { const [value, setValue] = useState("general") return (
General Shipping Payment
This is the General tab (controlled). This is the Shipping tab (controlled). This is the Payment tab (controlled).
Use the left and right arrow keys to navigate between the tabs. You must focus on a tab first.
) }