superfine
superfine copied to clipboard
Absolutely minimal view layer for building web interfaces
This addresses my issue #188. This PR would allow you to write views that create `shadow-roots`. For example when using JSX: ```js function view () { return Heading 1 The...
I just want to preface this issue by saying this is just an idea I had. I'm not sure that this belongs in Superfine but I do think it's interesting....
Wouldn't it be a nice and useful feature if `superfine` supported `ref` pseudo properties like [React](https://reactjs.org/docs/refs-and-the-dom.html), Preact, Dyo, uhtml etc. do? ```js const elemRef = { current: null } //...
@jorgebucaran Could you please review?
@andrewiggins I figured I'd create a separate issue for this one, since your work is already enough to get projects up and going without it. It would be great if...
React has [unmountComponentAtNode](https://reactjs.org/docs/react-dom.html#unmountcomponentatnode), preact has `render(null, element)`, etc. How would that work in Superfine? ```js patch(null, null, container) // ? // or unmount(container) //? ``` What is it expected from...