14 lines
408 B
TypeScript
14 lines
408 B
TypeScript
// import { Dispatch, PropsWithChildren, ReactElement, SetStateAction } from "react";
|
|
// import { OverlayWindow } from "../App";
|
|
|
|
// export function WindowOverlay(props: PropsWithChildren<{overlayWindows: OverlayWindow[]}>) {
|
|
|
|
// return <>
|
|
// {props.modal && <div
|
|
// className="modalOuter"
|
|
// onMouseDown={() => props.setModal(null)}>
|
|
// </div>}
|
|
|
|
// {props.children}
|
|
// </>;
|
|
// }
|