From a95b023dbf2bb10ae596ac9bad0e066c2e089034 Mon Sep 17 00:00:00 2001 From: Mitch Chanza Date: Thu, 19 Sep 2024 02:51:29 +0200 Subject: [PATCH] update page.tsx --- components/src/app/cards/page.tsx | 36 +++++++++++-------------------- 1 file changed, 12 insertions(+), 24 deletions(-) diff --git a/components/src/app/cards/page.tsx b/components/src/app/cards/page.tsx index e1db497..7618750 100644 --- a/components/src/app/cards/page.tsx +++ b/components/src/app/cards/page.tsx @@ -1,27 +1,15 @@ import React from "react"; -import { QuizCards } from "../../components"; -import { files } from "@/components/QuizCards"; +import { QuizCards } from "../../components"; +import { CardsHolder, files } from "@/components/QuizCards"; function CardsComponent() { - return ( -
-
- -
-
- ); - } - - export default CardsComponent; - \ No newline at end of file + return ( + + + + + + ); +} + +export default CardsComponent;