1
0
mirror of synced 2025-12-22 11:26:57 -05:00
Files
docs/components/graphql/Scalar.tsx
2022-08-03 10:51:21 -07:00

11 lines
194 B
TypeScript

import { GraphqlItem } from './GraphqlItem'
import { ScalarT } from './types'
type Props = {
item: ScalarT
}
export function Scalar({ item }: Props) {
return <GraphqlItem item={item} />
}