v0.1.0
Pre-release
Pre-release
The simple release allows reference to other components:
import {styled} from 'leafs'
import {h} from 'forest'
const Button = styled.button`
color: red;
`
const Group = styled.div`
${Button} {
color: green;
}
`
h('div', () => {
Group({
fn() {
Button({ text: "I am green" })
}
})
Button({ text: "I am red" })
})