Back to Graylog2 Server

Drawer

graylog2-web-interface/src/components/common/Drawer.md

7.1.0335 B
Original Source
js
<Drawer opened={show} onClose={onClose} title="My Drawer">
  This is the content of the drawer.
</Drawer>

Example with customized size and position:

js
<Drawer opened={show} onClose={onClose} position="right" size="66%" title="Custom Drawer">
  This is a right-aligned drawer taking over 2/3 of the screen.
</Drawer>