blob: 9734ab59a4bf747c40765abb6a45083f5f32009e [file] [log] [blame]
Krishya75e43c02025-04-05 21:16:30 +08001import React from 'react';
2import './ForumPage.css';
3
4const ForumPage = () => {
5 return (
6 <div className="forum-container">
7 <h1>论坛</h1>
8 <div className="forum-post">
9 <h2>示例帖子标题</h2>
10 <p>这是一个示例帖子内容,用于测试论坛页面的显示效果。</p>
11 </div>
12 <div className="forum-comment">
13 <p>示例评论内容:这是一条测试评论。</p>
14 </div>
15 </div>
16 );
17};
18
19export default ForumPage;