import { Tabs } from 'antd'; import { VideoCameraOutlined, FileTextOutlined, CustomerServiceOutlined, ReadOutlined, BookOutlined } from '@ant-design/icons'; import { VideoContent } from './VideoContent'; import { CourseContent } from './CourseContent'; import { MusicContent } from './MusicContent'; import { ScienceContent } from './ScienceContent'; import { MoreContent } from './MoreContent'; import './pt.css'; export function PsychologyNav() { const items = [ // { // key: 'more', // label: ( // // // 宣传报道 // // ), // children: // }, // { // key: 'music', // label: ( // // < ReadOutlined className="text-lg" /> // 常识科普 // // ), // children: // }, // { // key: 'courses', // label: ( // // // 案例分析 // // ), // children: // }, { key: 'science', label: ( < FileTextOutlined className="text-lg" /> 心理课件 ), children: }, { key: 'vedio', label: ( 音视频 ), children: }, ]; return (
); } export default PsychologyNav;