UNPKG

mylingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

10 lines 396 B
import { jsx as _jsx, jsxs as _jsxs } from "preact/jsx-runtime"; import { Fragment } from "preact"; import Separator from "./Separator"; const Section = ({ children }) => { if (!Array.isArray(children) || !children.length) return null; return (_jsxs(Fragment, { children: [children, _jsx(Separator, {})] })); }; export default Section; //# sourceMappingURL=Section.js.map