Styling the component
In addition to the style that can be applied directly to the template, a great option is to use the css()
method:
import { _ } from "bemtv";
const { css, template } = _`App`();
css`
color: blue;
font-size: 20px;
`;
template`h1[Hello world!]`;
Last updated