Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Commit

Permalink
Update page.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
khylpe committed Apr 26, 2024
1 parent c0a98f2 commit 1b93b47
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,10 @@ import { useUser } from "@/providers/userProvider";
import ListOfRessourcesAccordion from "@/components/front-office/ressource-management/listOfRessourcesAccordion";
import PageSummary from "@/components/pageSummary";

const { Paragraph } = Typography;

export default function CategoryPage({ params }: { params: { id: string } }) {
const [category, setCategory] = useState<Category>();
const [resources, setResources] = useState<any[]>([]);
const [isLoading, setIsLoading] = useState<boolean>(false);
const { user } = useUser();

useEffect(() => {
fetchResources();
Expand Down

0 comments on commit 1b93b47

Please sign in to comment.