A CSS in JS framework like styled-component for zheleznaya.
npm install zstyl
A CSS in JS framework like styled-component for zheleznaya.
``tsx
import { h, render } from "zheleznaya";
import { styled } from "zstyl";
const Header = styled<{
color: string;
}>
display: flex;
justify-content: center;
background: ${({ color }) => color}
&:hover {
background: #000;
}
div.inner {
height: 200px;
span {
color: yellow;
}
}
@media (max-width: 720px) {
display: inline-flex;
};
render(
200px height
);
``