aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-04-13 22:31:07 -0400
committerGalen Guyer <galen@galenguyer.com>2022-04-13 22:31:07 -0400
commit60af17c095ae6f034dac96ce64bfb5cd76fe603a (patch)
tree0e6809ef7871c5f6e0587659d07dee2c7c983022 /src/pages
parent003e957a77ddf0f3207b86ef6b8a2bdc718405ef (diff)
use goatcounter the right way
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/Graph.jsx2
-rw-r--r--src/pages/Index.jsx2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/pages/Graph.jsx b/src/pages/Graph.jsx
index 6f19304..eb0475f 100644
--- a/src/pages/Graph.jsx
+++ b/src/pages/Graph.jsx
@@ -13,7 +13,6 @@ import {
ResponsiveContainer,
Label,
} from "recharts";
-import GoatCounter from "../components/GoatCounter";
import "./Graph.css";
const Graph = (props) => {
@@ -76,7 +75,6 @@ const Graph = (props) => {
<YAxis dataKey="value" type="number"></YAxis>
<Tooltip content={CustomTooltip} />
</LineChart>
- <GoatCounter />
</div>
);
};
diff --git a/src/pages/Index.jsx b/src/pages/Index.jsx
index 3beb6fd..7f196e0 100644
--- a/src/pages/Index.jsx
+++ b/src/pages/Index.jsx
@@ -1,5 +1,4 @@
import Card from "../components/Card";
-import GoatCounter from "../components/GoatCounter";
import "./Index.css";
const Index = (props) => {
@@ -58,7 +57,6 @@ const Index = (props) => {
/>
</div>
</div>
- <GoatCounter />
</div>
);
};