LaoeGaoci | 85307e6 | 2025-05-30 23:28:42 +0800 | [diff] [blame^] | 1 | 'use client'; |
2 | import React from 'react'; | ||||
3 | |||||
4 | const 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 | |||||
12 | export default EmptyPage; |