blob: dbceffdfa96e10eefa095c709917e341f5d44c9f [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
San3yuan6f2ed692025-04-16 20:24:49 +08005import style from "./index.module.css";
6
San3yuan4d0e8032025-04-04 17:21:40 +08007export default function Forum() {
8
9
10 return (
San3yuan6f2ed692025-04-16 20:24:49 +080011 <div className={style.container}>
12 <div className={style.selfStatus}>
13 <SelfStatus />
14 </div>
San3yuan4d0e8032025-04-04 17:21:40 +080015 </div>
16 );
17}