mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
0dc7c99e7d
* docs: PurePanel * docs: Update API * docs: Update doc * chore: correct style naming * test: Update snapshot
589 B
589 B
order | title | debug | ||||
---|---|---|---|---|---|---|
99 |
|
true |
zh-CN
调试用组件,请勿直接使用。
en-US
Debug usage. Do not use in your production.
import React from 'react';
import { Drawer } from 'antd';
/** Test usage. Do not use in your production. */
const { _InternalPanelDoNotUseOrYouWillBeFired: InternalDrawer } = Drawer;
export default () => (
<InternalDrawer title="Hello Title" style={{ height: 300, boxShadow: '0 0 5px red' }}>
Hello Content
</InternalDrawer>
);