San3yuan | 4d0e803 | 2025-04-04 17:21:40 +0800 | [diff] [blame] | 1 | import React from "react"; |
| 2 | import { Navigate } from "react-router"; |
San3yuan | 2534d42 | 2025-04-08 21:43:18 +0800 | [diff] [blame^] | 3 | import SelfStatus from "@/components/selfStatus/selfStatus"; |
San3yuan | 4d0e803 | 2025-04-04 17:21:40 +0800 | [diff] [blame] | 4 | |
| 5 | export default function Forum() { |
| 6 | |
| 7 | |
| 8 | return ( |
| 9 | <div> |
San3yuan | 2534d42 | 2025-04-08 21:43:18 +0800 | [diff] [blame^] | 10 | <SelfStatus/> |
San3yuan | 4d0e803 | 2025-04-04 17:21:40 +0800 | [diff] [blame] | 11 | <h1>Forum</h1> |
| 12 | <p>Welcome to the forum!</p> |
| 13 | </div> |
| 14 | ); |
| 15 | } |