Is there any way to add borders to the table. What should I add to the following code.
html.Table(className='reaponsive-table',
children=[
html.Thead(
html.Tr(
children=[html.Th(col.title()) for col in imp_df.columns.values]
)
),
html.Tbody([
html.Tr(
children=[html.Td(data) for data in d]
)
for d in imp_df.values.tolist()])
])