Dropdown

Placement

The placement prop determines the initial placement of the Dropdown content relative to the trigger. The Dropdown will react to viewport edges and scrolling.

<DemoLayout>
  <Dropdown
    placement="bottom-start"
    data={data}
    isOpen>
    <Button>Menu</Button>
  </Dropdown>
</DemoLayout>