diff --git a/src/App.vue b/src/App.vue
index e872aec..e54cc47 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,5 +1,4 @@
-
-
-
-
diff --git a/src/stores/counter.ts b/src/stores/counter.ts
deleted file mode 100644
index d5e548a..0000000
--- a/src/stores/counter.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { ref } from "vue";
-import { defineStore } from "pinia";
-
-export const useCounterStore = defineStore("counter", () => {
- const count = ref(0);
-
- const increment = () => {
- count.value += 1;
- };
-
- return { count, increment };
-});