synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
14 lines • 543 B
TypeScript
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