Skip to content

v0.2.0

Compare
Choose a tag to compare
@pveyes pveyes released this 29 Jun 09:04
· 14 commits to master since this release
12012d1

Allow infinite property nesting 83f288b

This is not possible before

const theme = createTheme({
  a: {
    b: {
      c: {
        d: ''
      }
    }
  }
});