BlockCheckbox.d.ts 220 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
import React from 'react';

export interface BlockChecboxProps {
  value: string;
  onChange: (key: string) => void;
  list: any[];
}

export default class BlockChecbox extends React.Component<BlockChecboxProps, any> {}