Skip to content

v0.1.0

Choose a tag to compare

@orenelbaum orenelbaum released this 06 Dec 00:28
· 7 commits to main since this release

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;
  }
}