commit | 85307e67808bbcb3585f823daad693d96968f559 | [log] [tgz] |
---|---|---|
author | LaoeGaoci <1523796237@qq.com> | Fri May 30 23:28:42 2025 +0800 |
committer | LaoeGaoci <1523796237@qq.com> | Fri May 30 23:28:42 2025 +0800 |
tree | cd9d603daf9118736410f729173a731a70130856 | |
parent | 388f7766cc0a29764f05b8b929d3620013c24632 [diff] |
build router Change-Id: If717d27bfa3180affc7fc02509bbdc7e6fbd664d
diff --git a/src/app/notification/page.tsx b/src/app/notification/page.tsx new file mode 100644 index 0000000..c48b626 --- /dev/null +++ b/src/app/notification/page.tsx
@@ -0,0 +1,12 @@ +'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;