refactor(page): removed unused import

This commit is contained in:
Corentin Thomasset 2022-04-06 00:49:32 +02:00
parent 57fd14a199
commit f70fce65e2
No known key found for this signature in database
GPG key ID: DBD997E935996158

View file

@ -15,7 +15,6 @@
<script setup lang="ts">
import type { ITool } from '@/tools/Tool';
import { toRefs, defineProps } from 'vue';
import { ArrowRight } from '@vicons/tabler'
const props = defineProps<{ tool: ITool & { category: string } }>()
const { tool } = toRefs(props)