diff --git a/src/components/KeywordsPicker.tsx b/src/components/KeywordsPicker.tsx index df7269c..d4784d5 100644 --- a/src/components/KeywordsPicker.tsx +++ b/src/components/KeywordsPicker.tsx @@ -1,6 +1,7 @@ import * as React from "react"; import classNames from "classnames"; import Checkmark from "@spectrum-icons/workflow/Checkmark"; +import { Link } from "gatsby"; interface KeywordsPickerProps { keywords: string[]; @@ -18,7 +19,7 @@ const KeywordsPicker = ({ keywords, value, onChange }: KeywordsPickerProps) => { const selected = value === keyword; return (
  • - +
  • ); })}