function InstructionModule() {
return (
<div className="w-full h-full flex flex-col items-start justify-start p-4 text-left">
<h2 className="font-bold text-xl mb-2">Welcome to the Dashboard</h2>
<p>To draw more modules, click and drag on the grid.</p>
</div>
);
}
render(<InstructionModule />);