blob: 6e8ad593afc8e24e35f0be76e27fff0bb4398b8e [file] [log] [blame]
San3yuan4d0e8032025-04-04 17:21:40 +08001import React from "react";
2import { Navigate } from "react-router";
San3yuan2534d422025-04-08 21:43:18 +08003import SelfStatus from "@/components/selfStatus/selfStatus";
San3yuan4d0e8032025-04-04 17:21:40 +08004
5export default function Forum() {
6
7
8 return (
9 <div>
San3yuan2534d422025-04-08 21:43:18 +080010 <SelfStatus/>
San3yuan4d0e8032025-04-04 17:21:40 +080011 <h1>Forum</h1>
12 <p>Welcome to the forum!</p>
13 </div>
14 );
15}