mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 11:08:45 +08:00
8 lines
262 B
TypeScript
8 lines
262 B
TypeScript
import React from 'react';
|
|
import { message } from 'antd';
|
|
|
|
/** Test usage. Do not use in your production. */
|
|
const { _InternalPanelDoNotUseOrYouWillBeFired: InternalPanel } = message;
|
|
|
|
export default () => <InternalPanel content="Hello World!" type="error" />;
|