added layout elements

This commit is contained in:
Brian Bjarke Jensen
2024-02-23 22:59:44 +01:00
parent 6c3e772517
commit e5344e6519
9 changed files with 229 additions and 147 deletions
+17
View File
@@ -0,0 +1,17 @@
import dash_mantine_components as dmc
image_element = dmc.Center(
dmc.Image(
id="image_container",
width=600,
height=600,
withPlaceholder=True,
placeholder=[
dmc.Loader(
color="gray",
size="md"
)
]
)
)