Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 612 Bytes

banner.md

File metadata and controls

31 lines (25 loc) · 612 Bytes
order iframe title
6
250
zh-CN en-US
顶部公告
Banner

zh-CN

页面顶部通告形式,默认有图标且type 为 'warning'。

en-US

Display Alert as a banner at top of page.

import { Alert } from 'antd';

ReactDOM.render(
  <div>
    <Alert message="Warning text" banner />
    <br />
    <Alert message="Very long warning text warning text text text text text text text" banner closable />
    <br />
    <Alert showIcon={false} message="Warning text without icon" banner />
    <br />
    <Alert type="error" message="Error text" banner />
  </div>
, mountNode);