diff --git a/frontend/pages/index.tsx b/frontend/pages/index.tsx
index 57f992e..50a742e 100644
--- a/frontend/pages/index.tsx
+++ b/frontend/pages/index.tsx
@@ -1,21 +1,18 @@
import "@navikt/ds-css";
-
import { Button, Heading } from "@navikt/ds-react";
-
-const axios=require('axios').default
-
-
-
+import axios , { AxiosError } from "axios";
+import { log } from "console";
+import { useState } from "react"; //useSWR hilsen Emil ;D
async function getWorld() {
- axios.get("/")
- .then((response : any) => {
- console.log(response);
- }).catch((error : any) => {
+ try {
+ const {data} : {data: any} = await axios.get("http://0.0.0.0:8080/");
+ console.log(data);
+ return data
+ } catch (error) {
console.log(error);
- })
+ }
}
-
export default function Home() {
getWorld();
@@ -25,6 +22,7 @@ export default function Home() {
{getWorld()}
*/} )