diff options
author | Galen Guyer <galen@galenguyer.com> | 2020-11-15 13:38:09 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2020-11-15 13:38:09 -0500 |
commit | 668f0ee2dcc2bea3647e43db019ec3d9ee61e00e (patch) | |
tree | a47aee13dd8f9f638cbe3f83ce4dd27bc873a9dd /src/MainPage.js | |
parent | 80355db079489fc4a14d38e3d1f733ac40a65141 (diff) |
add goatcounter as page element to hopefully catch routing
Diffstat (limited to 'src/MainPage.js')
-rw-r--r-- | src/MainPage.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/MainPage.js b/src/MainPage.js index ade335e..7c316c4 100644 --- a/src/MainPage.js +++ b/src/MainPage.js @@ -1,5 +1,6 @@ import React from "react"; import Card from "./Card"; +import GoatCounter from "./GoatCounter"; const MainPage = (props) => { const latest = props.latest; @@ -102,6 +103,7 @@ const MainPage = (props) => { /> </div> </div> + <GoatCounter /> </> ); }; |