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