Back to Graylog2 Server

Section

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

7.1.0246 B
Original Source

Most basic usage.

tsx
<Section title="The Title">The children</Section>

With actions.

tsx
import { Button } from 'components/bootstrap';

<Section title="The Title" actions={<Button>An Action</Button>}>
  The children
</Section>;