Unable to put 2 objects next to each other in a group

        dmc.Group(\[

            dmc.DatePicker(

                id="date-picker-range",

                type="range",

                value=\[datetime.date.today() - datetime.timedelta(days=10), datetime.date.today()\],

                maxDate=datetime.date.today(),

                size="sm",

            ),

            html.Div(id="threshold-frequency-table")

        \], grow=True, justify="center", gap="xs"),

I want to be able to display the whole table next to the datapicker. Thank you in advance!

Hi @Dolnay and welcome to the Dash community! :slightly_smiling_face:

Try using the wrap prop:

dmc.Group([date_picker, grid],  wrap="nowrap")

1 Like

It worked. thank you so much