@lume/element
Version:
Create Custom Elements with reactivity and automatic re-rendering.
15 lines • 378 B
JavaScript
import { identityTemplateTag } from './utils.js';
/**
* A no-op (identity) template tag that does nothing, useful merely for marking CSS strings for syntax
* highlighting in various text editors. For example:
*
* ```js
* const style = css`
* .el {
* background: skyblue;
* }
* `
* ```
*/
export const css = identityTemplateTag;
//# sourceMappingURL=css.js.map