11 lines
194 B
TypeScript
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} />
|
|
}
|