9 lines
197 B
TypeScript
9 lines
197 B
TypeScript
import { HookTable } from "@/components/hook-table"
|
|
import { usePrompt } from "../../registries/hook-values"
|
|
|
|
const Props = () => {
|
|
return <HookTable props={usePrompt} />
|
|
}
|
|
|
|
export default Props
|