pinkCell = {
const dom = html`<h2>Specify the wrapper class</h2>`;
const css = `* {color: pink;}`;
const wrapper = html`<header></header>`;
const wrapperClass = 'pink-text';
const title = scoped(dom, css, { wrapper, wrapperClass });
const anotherDiv = html`<div class="pink-text"><h2>Also pink</h2></div>`;
return html`<article>${title}<p>Some black text</p>${anotherDiv}<p>The same class has been used out of the "scope"</p></article>`;
}