TIL - How to write a web component with SolidJS
Today, I wanted to test the library: SolidJS. It features JSX support and is known for its great performance.
Install the lib
The first step I did was to follow the Getting Started guide and start from a given template:
> npx degit solidjs/templates/...
blog.adrgautier.co3 min read
Vincent Will
Thanks for this Guide! The CSS import didn't work for me. If anyone has the same issue, I could resolve it by attaching "?inline" to the import:
import styles from "./MyComponent.css?inline";