import React from "react"; import FormItem from "@theme/ApiExplorer/FormItem"; import FormSelect from "@theme/ApiExplorer/FormSelect"; import { useTypedDispatch, useTypedSelector } from "@theme/ApiItem/hooks"; import { setAccept } from "./slice"; function Accept() { const value = useTypedSelector((state: any) => state.accept.value); const options = useTypedSelector((state: any) => state.accept.options); const dispatch = useTypedDispatch(); if (options.length <= 1) { return null; } return ( dispatch(setAccept(e.target.value))} /> ); } export default Accept;