整理框架和新建基础模块
This commit is contained in:
18
src/pages/noticeManage/noticeManage.tsx
Normal file
18
src/pages/noticeManage/noticeManage.tsx
Normal file
@ -0,0 +1,18 @@
|
||||
import React from 'react';
|
||||
import { useIntl } from 'umi';
|
||||
import './noticeManage.less';
|
||||
|
||||
const NoticeManage: React.FC = () => {
|
||||
const intl = useIntl();
|
||||
|
||||
return (
|
||||
<div className="notice-manage-container">
|
||||
<h1>{intl.formatMessage({ id: 'menu.通知中心管理' })}</h1>
|
||||
<div className="notice-manage-content">
|
||||
{/* 通知中心管理内容 */}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default NoticeManage;
|
Reference in New Issue
Block a user