@@ -1,8 +1,17 @@
+import { Col, Row } from "antd";
import NotificationList from "../../../components/notification/NotificationList";
const Widget = () => {
// TODO i18n
- return <NotificationList />;
+ return (
+ <Row>
+ <Col flex="auto"></Col>
+ <Col flex="960px">
+ <NotificationList />
+ </Col>
+ </Row>
+ );
};
export default Widget;