blob: c48b626a5bdb74274d8cb8cd7f7241c1685b2625 [file] [log] [blame]
LaoeGaoci85307e62025-05-30 23:28:42 +08001'use client';
2import React from 'react';
3
4const EmptyPage: React.FC = () => {
5 return (
6 <div className="p-d-flex p-jc-center p-ai-center" style={{ height: '100vh' }}>
7 {"一个空页面"}
8 </div>
9 );
10};
11
12export default EmptyPage;