import * as React from "react"; import classNames from "classnames"; import { Link } from "gatsby"; interface KeywordsPickerProps { keywords: string[]; value: string | null; getHref: (value: string | null) => string; onPick: (value: string | null) => void; } const KeywordsPicker = ({ keywords, value, getHref, onPick }: KeywordsPickerProps) => { return (
Collections
); }; export default KeywordsPicker;