anything-llm/frontend/src/components/ModalWrapper/index.jsx

10 lines
275 B
React
Raw Normal View History

export default function ModalWrapper({ children, isOpen }) {
if (!isOpen) return null;
return (
<div className="bg-black/60 backdrop-blur-sm fixed top-0 left-0 outline-none w-screen h-screen flex items-center justify-center z-30">
{children}
</div>
);
}