UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

14 lines 543 B
import { Dispatch, SetStateAction } from 'react'; type TableNameFormProps = { name: string; setName: Dispatch<SetStateAction<string>>; description: string | undefined; setDescription: Dispatch<SetStateAction<string | undefined>>; }; /** * React component for the naming a new table or view. * Renders UI to provide the name and description of a table or view. */ export default function TableNameForm(props: TableNameFormProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=TableNameForm.d.ts.map