You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
316 B

import Header from "./Header";
import Questions from "./Questions";
import "./index.css";
const Exam=()=>{
return (
<div
className="Exam w-[100vw] px-28 pt-16 pb-8 relative"
style={{ width: "calc(100vw - 5px)" }}
>
<Header />
<Questions />
</div>
);
}
export default Exam;