Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
502 B
Plaintext
16 lines
502 B
Plaintext
'use client';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { Fragment } from 'react';
|
|
import { asModal } from '../asModal/index.js';
|
|
const _Modal = (props) => {
|
|
const { children } = props;
|
|
if (children) {
|
|
if (typeof children === 'function') {
|
|
return (_jsx(Fragment, { children: children(props) }));
|
|
}
|
|
return (_jsx(Fragment, { children: children }));
|
|
}
|
|
return null;
|
|
};
|
|
export const Modal = asModal(_Modal);
|
|
//# sourceMappingURL=index.js.map |