blob: 9734ab59a4bf747c40765abb6a45083f5f32009e [file] [log] [blame] [edit]
import React from 'react';
import './ForumPage.css';
const ForumPage = () => {
return (
<div className="forum-container">
<h1>论坛</h1>
<div className="forum-post">
<h2>示例帖子标题</h2>
<p>这是一个示例帖子内容,用于测试论坛页面的显示效果。</p>
</div>
<div className="forum-comment">
<p>示例评论内容:这是一条测试评论。</p>
</div>
</div>
);
};
export default ForumPage;