import React from 'react'; import { App, Button } from 'antd'; // Sub page const MyPage = () => { const { notification } = App.useApp(); const showNotification = () => { notification.info({ message: `Notification topLeft`, description: 'Hello, Ant Design!!', placement: 'topLeft', }); }; return ( ); }; // Entry component export default () => ( );