import React, { useState } from 'react'; import { Button, Row, Drawer, Radio } from '@btri-ui/base'; import './index.less'; export default () => { const [show, setShow] = useState(false); const [width, setWidth] = useState('400px'); const toShow = () => setShow(true); const toClose = () => setShow(false); const onChange = ({ target: { value } }: any) => { setWidth(value); }; return (
最小 中等 最大 默认 50%

抽屉的内容

); };