import { Spinner } from "@medusajs/icons" import { Container } from "@medusajs/ui" import * as React from "react" import { HookRegistry } from "@/specs/hooks" import Feedback from "../Feedback" type HookValuesProps = { hook: string hideFeedback?: boolean } const HookValues = ({ hook, hideFeedback = false }: HookValuesProps) => { const Props = React.useMemo(() => { const Table = HookRegistry[hook]?.table if (!Table) { return (
No API reference found for{" "} {hook}