6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
export default function Overlay() {
|
|
return (
|
|
<div className="flex flex-col bg-transparent">this is the overlay</div>
|
|
);
|
|
}
|