import React, { useContext } from "react"; import { Button, ButtonProps } from "./ListItem"; import { SearchContext } from "../lib/context"; interface FreeSearchActionProps extends Omit { index?: number; } export default function FreeSearchAction(props: FreeSearchActionProps) { const { search } = useContext(SearchContext); return ( ); }