aboutsummaryrefslogtreecommitdiff
path: root/src/History.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/History.js')
-rw-r--r--src/History.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/History.js b/src/History.js
index df5398b..2e710de 100644
--- a/src/History.js
+++ b/src/History.js
@@ -12,6 +12,7 @@ import {
ResponsiveContainer,
Label,
} from "recharts";
+import GoatCounter from './GoatCounter';
const History = (props) => {
const offset = DateTime.fromSQL(props.data[0].date, { zone: "UTC" }).setZone(DateTime.local().zoneName).toSeconds();
@@ -45,6 +46,7 @@ const History = (props) => {
<YAxis dataKey="value" type="number"></YAxis>
<Tooltip content={CustomTooltip} />
</LineChart>
+ <GoatCounter />
</>
);
};