1
0
mirror of synced 2025-12-22 19:34:15 -05:00
Files
docs/components/rest/RestHTTPMethod.tsx
2022-02-28 18:30:54 +00:00

11 lines
230 B
TypeScript

import { CodeBlock } from './CodeBlock'
type Props = {
verb: string
requestPath: string
}
export function RestHTTPMethod({ verb, requestPath }: Props) {
return <CodeBlock verb={verb} codeBlock={requestPath}></CodeBlock>
}