import { useMainContext } from "../MainProvider"; import { Radio, Space, Typography } from "antd"; import { PostType } from "@nice/common"; // Assuming PostType is defined in this path export default function SearchModeRadio() { const { searchMode, setSearchMode } = useMainContext(); const handleModeChange = (e) => { setSearchMode(e.target.value); }; return (

只搜索

视频课程 思维导图 所有资源
); }