@benev/slate
Version:
frontend web stuff
16 lines • 396 B
JavaScript
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