v0.1.0
I don't know why I haven't bumped minor version until now.
Anyway, nested components! Have fun with them.
import { Component } from 'solid-js'
const Parent: Component<...> = ({ a, b }) => {
const Child: Component<...> = ({ c, d }) => {
a; b; c; d;
}
}
// ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
import { Component } from 'solid-js'
const Parent: Component<...> = props1 => {
const Child: Component<...> = props2 => {
props1.a; props1.b; props2.c; props2.d;
}
}