AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
import { GraphqlItem } from './GraphqlItem'
import { ScalarT } from './types'
type Props = {
item: ScalarT
}
export function Scalar({ item }: Props) {
return <GraphqlItem item={item} />
}