diff --git a/budgit.client/src/AppState.js b/budgit.client/src/AppState.js
index 48c126e..3062a9b 100644
--- a/budgit.client/src/AppState.js
+++ b/budgit.client/src/AppState.js
@@ -5,5 +5,6 @@ export const AppState = reactive({
user: {},
account: {},
transactions: [],
- categories: []
+ categories: [],
+ activeCategory: {}
})
diff --git a/budgit.client/src/components/Analysis.vue b/budgit.client/src/components/Analysis.vue
new file mode 100644
index 0000000..a0cfa57
--- /dev/null
+++ b/budgit.client/src/components/Analysis.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/budgit.client/src/components/Category.vue b/budgit.client/src/components/Category.vue
index 732a497..97181b4 100644
--- a/budgit.client/src/components/Category.vue
+++ b/budgit.client/src/components/Category.vue
@@ -1,8 +1,10 @@
-
+
{{category.name}}
${{totalSpent()}}
+
${{category.budgeted}}
@@ -11,6 +13,7 @@