diff --git a/src/components/ResourceTable.tsx b/src/components/ResourceTable.tsx new file mode 100644 index 0000000..96ab680 --- /dev/null +++ b/src/components/ResourceTable.tsx @@ -0,0 +1,42 @@ + +const ResourceTable = () => { + const ResourceEntry = () => { + return ( + + + test + + + test + + + ) + } + + return( +
+ + + + + + + + + + + +
+ + Resource + + + + Description + +
+
+ ); +}; + +export default ResourceTable; diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 5b07dc6..efdb18a 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,11 +1,12 @@ import { type NextPage } from "next"; import Head from "next/head"; +import ResourceTable from "~/components/ResourceTable"; import { api } from "~/utils/api"; const Home: NextPage = () => { - const query = api.auditoryResource.getAll.useQuery(); - console.log(query.data); + //const query = api.auditoryResource.getAll.useQuery(); + //console.log(query.data); return ( <> @@ -16,6 +17,7 @@ const Home: NextPage = () => {

under construction

+
);