added new folder and ran tests

This commit is contained in:
Brian Bjarke Jensen
2024-05-07 20:19:18 +02:00
parent d9d2dbab74
commit bc653a0be4
16 changed files with 700 additions and 19 deletions
+25
View File
@@ -0,0 +1,25 @@
from __future__ import annotations
import dash_mantine_components as dmc
from .labels import labels_element
next_button = dmc.Button(
'next'.title(),
id='next-button',
n_clicks=0,
fullWidth=True,
color='lime',
radius='sm',
size='md',
style={
'height': '50px',
},
)
inputs_element = dmc.SimpleGrid(
children=[
labels_element,
next_button,
],
)