Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
G9Frontend
/
789e7177f07bb0b9800925810f175118495322d1
/
.
/
src
/
app
/
user
/
purchased-resources
/
page.tsx
blob: c48b626a5bdb74274d8cb8cd7f7241c1685b2625 [
file
] [
log
] [
blame
]
'use client'
;
import
React
from
'react'
;
const
EmptyPage
:
React
.
FC
=
()
=>
{
return
(
<
div className
=
"p-d-flex p-jc-center p-ai-center"
style
={{
height
:
'100vh'
}}>
{
"一个空页面"
}
</
div
>
);
};
export
default
EmptyPage
;