import { useState } from "react"; import Button from "./Low/Button"; import Modal from "./Modal"; interface Props { open?: boolean } export default function PracticeModal({ open }: Props) { const [isOpen, setIsOpen] = useState(open || false) return ( setIsOpen(false)}>
To acquaint yourself with the question types in this section, please respond to the practice questions provided.
Do note that these questions are for practice purposes only and are not graded.
You may choose to skip them if you prefer.
) }