Removed useless files

This commit is contained in:
2025-05-07 17:57:20 +02:00
parent 85200dc0ae
commit b587d5d338

View File

@@ -1,26 +0,0 @@
<script lang="ts">
export default {
props: {
name: String,
park: String,
length: String,
height: String,
speed: String
},
components: {
}
}
</script>
<template>
<tr class="border-b dark:border-gray-700">
<th scope="row" class="px-4 py-3 font-medium text-gray-900 whitespace-nowrap dark:text-white">{{ name }}</th>
<td class="px-4 py-3">{{ park }}</td>
<td class="px-4 py-3">{{ length }}</td>
<td class="px-4 py-3">{{ height }}</td>
<td class="px-4 py-3">{{ speed }}</td>
</tr>
</template>