UNPKG

adou-ui

Version:

feat:修复了TagInput无法清空的问题

10 lines (9 loc) 270 B
import React from 'react'; import './index.scss'; interface CollapseProps { header?: any; children?: any; firstShow?: boolean; } declare const Collapse: ({ header, children, firstShow }: CollapseProps) => React.JSX.Element; export default Collapse;