UNPKG

@benev/slate

Version:
16 lines 396 B
import { css } from "../html.js"; const styles = css ` :host { display: contents; } `; /** wrap a shadow view into a shadow component */ export const prepare_shadow_componentify = (nexus) => { return (View) => { return nexus.shadowComponent(use => { use.styles(styles); return View([]); }); }; }; //# sourceMappingURL=shadow_componentify.js.map