feat(exam): add SAT style testing component

This commit is contained in:
shafin-r
2026-01-28 15:22:19 +06:00
parent 61b7c5220e
commit 355ca0c0c4
17 changed files with 1136 additions and 267 deletions

View File

@ -1,3 +1,12 @@
import { useNavigate } from "react-router-dom";
import { Button } from "../../../components/ui/button";
export const Results = () => {
return <div>Results</div>;
const navigate = useNavigate();
return (
<div className="min-h-screen flex items-center justify-center text-2xl font-satoshi-bold">
Your results go here
<Button onClick={() => navigate("/student/home")}>Go to home</Button>
</div>
);
};