diff --git a/src/app/page.tsx b/src/app/page.tsx
index 529e1c1..e4d3e13 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,3 +1,33 @@
+"use client";
+
+import { useRef } from "react";
+
+import { useFetchLiveSubmission } from "@/hooks";
+import LiveSubmissionTable from "./LiveSubmissionTable";
+
export default function Home() {
- return
home page
;
+ // used for setting the pollId.
+ // not using useState, because that will force a re-render every time it's set
+ // then it will fetch the new data, which will set the state, which will render the page
+ // which will refetch the from the server. Causing an infinite loop
+ let pollIdRef = useRef(0);
+ const { data, isLoading, isError, isSuccess } = useFetchLiveSubmission(pollIdRef.current);
+
+ if (isLoading || !data) {
+ return Fetching data
;
+ }
+
+ if (isError) {
+ return Error fetching data
;
+ }
+
+ if (isSuccess) {
+ pollIdRef.current = data[0].msg.sid;
+ }
+
+ return (
+
+
+
+ );
}