    


    const data = [
      { id: 1, title: 'The Life We Bury', author: 'Allen Eskens' },
      { id: 2, title: 'Big Little Lies', author: 'Liane Moriarty' },
      { id: 3, title: 'Everything I Never Told You', author: 'Celeste Ng' },
      { id: 4, title: "The Sister", author: 'Louise Jensen' },
      { id: 5, title: 'A Man Called Ove: A Novel', author: 'Fredrik Backman' },
    ];

    const { TextCell, ImageCell } = Table;
    
    <App style={{ width: 900 }}>
      <Table data={data} checkType="multiple">
        <TextCell field="id" header="Book ID" />
        <TextCell field="title" header="Title" />
        <TextCell field="author" header="Author" />
      </Table>
    </App>