import TableField from '~components/common/TableField' import MentionTypeahead from '../MentionTypeahead' import Typeahead from 'react-bootstrap-typeahead/types/core/Typeahead' interface Props extends React.DetailedHTMLProps< React.InputHTMLAttributes, HTMLInputElement > { label: string description?: string placeholder?: string inclusions: MentionItem[] exclusions: MentionItem[] typeaheadRef: React.Ref onUpdate: (content: MentionItem[]) => void } const MentionTableField = ({ label, description, placeholder, inclusions, exclusions, typeaheadRef, ...props }: Props) => { return ( ) } export default MentionTableField