import { useSound } from "react-sounds"; import Card from "../UI/Card"; import CardHeader from "../UI/CardHeader"; const SessionCard = () => { const { play } = useSound("notification/notification"); // function onStart(): void { // throw new Error("Function not implemented."); // } return (
  • Number of Vehicles:
  • Vehicles without Tax:
  • Vehicles without MOT:
  • Vehicles with NPED Cat A:
  • Vehicles with NPED Cat B:
  • Vehicles with NPED Cat C:
); }; export default SessionCard;