Dsah table with mutiindex

Is there a way to display a multi-index dataframe as a dash_table without resetting the index.

Group    SubGroup    Value
G1           SG1       65
             SG2       66
G2           SG2       33
             SG4       55
....

If I reset_index on the df, G1 and G2 will be duplicated at each row of the associated SubGroup and Value which make it less readable from a client perspective.
Thanks for your answer