aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2020-11-13 20:43:44 -0500
committerGalen Guyer <galen@galenguyer.com>2020-11-13 20:43:44 -0500
commit26f0066f9b2daa904d4fe4cac80841cbe40360ca (patch)
tree691f0d4b62c73ab4f486bea8ee4bdc564b1343c4 /src/index.js
parent5d5c39b6d318a91dd5062d829cecf3dcdd25ccab (diff)
get data from api
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js
index ea743ca..4c1dc74 100644
--- a/src/index.js
+++ b/src/index.js
@@ -3,6 +3,7 @@ import ReactDOM from "react-dom";
import { SWRConfig } from "swr";
import "./index.css";
import App from "./App";
+import reportWebVitals from "./reportWebVitals";
const fetcher = (...args) => fetch(...args).then((res) => res.json());