Ящик в Reaction / Antd не открывается с правой стороны, чуть ниже всех компонентов - PullRequest
0 голосов
/ 30 апреля 2020

Я хочу, чтобы при нажатии на кнопку поиска открывалось меню справа, но оно не подчиняется, оно открывается под таблицей

<div className='container-fluid'>
  <Drawer
    title="Teste"
    closable={true}
    onClose={this.onClose}
    visible={this.state.displayDiv}
  >
    <p>Some contents...</p>
    <p>Some contents...</p>
    <p>Some contents...</p>
  </Drawer>
  <div className='row' style={{ marginLeft: 30 }}>
    <button class='btn btn-outline-success' type='button' onClick={this.changeDiv} style={{ marginLeft: 20, height: 40 }}>
      Pesquisar
    </button>
  </div>

  <table>
    {...}
  </table>
</div>

Я использую bootstrap для стиль и стиль как компоненты

...