feat(*): Add basic example estimation page

This commit is contained in:
Josh Creek
2023-06-30 14:08:59 +00:00
parent c7f1c6c652
commit 1815b08e88
5 changed files with 128 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
<script lang="ts">
export let average: string | number;
</script>
<div id="average-estimate">
<h2>Average Estimate</h2>
<p>{average}</p>
</div>