fix icon issue

This commit is contained in:
Brandon Egger
2023-03-16 16:19:26 -05:00
parent c118a1a55c
commit 6802f5673d
4 changed files with 135 additions and 90 deletions

View File

@ -5,8 +5,7 @@ import { api } from "~/utils/api";
const Home: NextPage = () => {
//const query = api.auditoryResource.getAll.useQuery();
//console.log(query.data);
const query = api.auditoryResource.getAll.useQuery();
return (
<>
@ -17,7 +16,7 @@ const Home: NextPage = () => {
</Head>
<main>
<div className="my-6">
<ResourceTable />
<ResourceTable resources={query.data} />
</div>
</main>
</>