Defining the template
import { _ } from "bemtv";
const { template } = _`App`();
template`Hello world!`;import { _ } from "bemtv";
let count = 0;
const { template } = _`App`();
setInterval(() => count++, 1000);
template(() => `Count is: ${count}`);Last updated