import * as React from "react"; import classNames from "classnames"; interface KeywordsPickerProps { keywords: string[]; value: string | null; onChange: (val: string | null) => void; } const KeywordsPicker = ({ keywords, value, onChange }: KeywordsPickerProps) => { return (