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