UNPKG

header-sider-layout

Version:

ant-design-pro layout, based on pro-layout, with header and sider layout.

13 lines (12 loc) 298 B
import React from 'react'; export interface BlockCheckboxProps { value: string; onChange: (key: string) => void; list: { title: string; key: string; url: string; }[]; } declare const BlockCheckbox: React.FC<BlockCheckboxProps>; export default BlockCheckbox;