UNPKG

@tinacms/toolkit

Version:

Tina is a lightweight but powerful toolkit for creating a site editing ui with javascript components. Tina surfaces superpowers for dev’s to create, expand on and customize a simple yet intuitive ui for editing content.

17 lines (13 loc) 391 B
/** */ import * as React from 'react'; import type { TinaCMS } from '../../../../tina-cms'; import type { ReferenceFieldProps } from './index'; import { Field } from '../../../forms'; interface ReferenceSelectProps { cms: TinaCMS; input: any; field: ReferenceFieldProps & Field; } declare const ReferenceSelect: React.FC<ReferenceSelectProps>; export default ReferenceSelect;