Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.02 KB

index.en-US.md

File metadata and controls

43 lines (35 loc) · 1.02 KB
category group title cover demo
Components
Other
App
cols
2

New App Component which provide global style & static function replacement.

When To Use

Static function in React 18 concurrent mode will not well support. In v5, we recommend to use hooks for the static replacement. But it will make user manual work on define this.

Examples

message notification modal

How to use

import React from 'react';
import { App } from 'antd';
const MyPage = () => {
  const { message, notification, modal } = App.useApp();
  message.success('Good!');
  notification.info({ message: 'Good' });
  modal.warning({ title: 'Good' });
  // ....
  // other message,notification,modal static function
  return <div>Hello word</div>;
};

const MyApp = () => (
  <App>
    <MyPage />
  </App>
);