diff --git a/src/components/TrainingCard.vue b/src/components/TrainingCard.vue
index ee495af..d06c3ca 100644
--- a/src/components/TrainingCard.vue
+++ b/src/components/TrainingCard.vue
@@ -15,9 +15,11 @@ const props = withDefaults(
defineProps<{
training: Training;
simple?: boolean;
+ tag?: keyof HTMLElementTagNameMap;
}>(),
{
simple: false,
+ tag: 'div',
},
);
@@ -31,14 +33,14 @@ const isDescriptionOpen = computed(() => visibleInstructions.value.includes(prop
const {isSmallScreen} = useScreen();
-
-
+