11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
import { RouteLoadingState } from "../components/RouteStates";
|
|
|
|
export default function StatusLoading() {
|
|
return (
|
|
<RouteLoadingState
|
|
area="服务状态"
|
|
description="正在核对免费公测服务的最新公告和恢复记录。"
|
|
/>
|
|
);
|
|
}
|