Files
Mav-Mobile-UI/src/components/SessionForm/SessionCard.tsx

34 lines
881 B
TypeScript
Raw Normal View History

import Card from "../UI/Card";
import CardHeader from "../UI/CardHeader";
const SessionCard = () => {
2025-09-16 14:20:38 +01:00
function onStart(): void {
throw new Error("Function not implemented.");
}
return (
<Card>
2025-09-16 14:20:38 +01:00
<CardHeader title="Session" />
<div className="flex flex-col gap-4">
<button
className="bg-[#26B170] text-white px-4 py-2 rounded hover:bg-green-700 transition w-full max-w-md"
2025-09-16 14:20:38 +01:00
onClick={onStart}
>
Start Session
</button>
2025-09-16 14:20:38 +01:00
<ul className="text-white space-y-2">
<li>Number of Vehicles: </li>
<li>Vehicles without Tax: </li>
<li>Vehicles without MOT: </li>
<li>Vehicles with NPED Cat A: </li>
<li>Vehicles with NPED Cat B: </li>
<li>Vehicles with NPED Cat C: </li>
</ul>
</div>
</Card>
);
};
export default SessionCard;