Solid-Lightning is a UI framework for Lightning Renderer built with SolidJS Universal Renderer. It allows you to declaratively construct lightning nodes with reactive primitives, just as you would construct a DOM tree in SolidJS. Also check out Solid Lightning Primitives for additional primitives to speed up your development.
Clone starter template:
> npx degit lightning-js/solid-starter-template my-app
>cd my-app
> npm i # or yarn or pnpm> npm start # or yarn or pnpmimport{render,Text}from'@lightningjs/solid';render(()=><Text>Hello World</Text>);For a more detailed Hello World guide check out the Hello World guide.
