in my app I'm working with mui-datatables. I added a custom toolbar to the table with one additional button, which is added into the row with the other buttons. But when I add a second button, it gets added below, although there is enough space. How can I display the second button in the row with the other ones?
const HeaderElements = () => (
<>
<AddNewButton />
<ExportJsonButton />
</>
);
<MUIDataTable
title=""
data={rows}
columns={columns}
options={{
selectableRowsHeader: false,
selectableRowsHideCheckboxes: true,
customToolbar: () => (<HeaderElements />),
}}
/>
