webapp: Remove orphan file

This commit is contained in:
Thomas Basler 2023-01-02 13:16:22 +01:00
parent dfec263d65
commit 065aab7141

View File

@ -1,28 +0,0 @@
<template>
<table class="table table-hover">
<tbody>
<tr>
<td>Current Limit</td>
<td>{{ formatNumber(limitData.limit, 2) }}%</td>
</tr>
</tbody>
</table>
</template>
<script lang="ts">
import { formatNumber } from '@/utils';
import { defineComponent } from 'vue';
declare interface LimitData {
limit: number;
}
export default defineComponent({
props: {
limitData: { type: Object as () => LimitData, required: true },
},
methods: {
formatNumber,
}
});
</script>