Peter Donald
Peter Donald
There is also [shifty](https://jeremyckahn.github.io/shifty/doc/) a pure javascript tweening/animation library
Another good option is [motion](https://motion.dev/)
It would also be nice to generate DOM factories in the form `DOM.h1().className('foo').tabIndex(3).children("Hello",DOM.span().className('red').children('World'))` which would compile to `React.createElement('h1', {className: 'foo', tabIndex:3},["Hello",React.createElement('span',{className: 'red'},['World'])])`. This may produce easier to use factories ......
Ant design is certainly something I have seen before and would consider if there is an existing react library that wrapped it and I could use as a template. I...
Another very interesting approach is the seek design system [BRAID](https://seek-oss.github.io/braid-design-system/components/Toggle/) ([Code](https://github.com/seek-oss/braid-design-system)). It has some very, very interesting technical approaches (i.e Separation of layout versus content versus interaction components, text components...
For an overview of current react design frameworks implemented as component libraries see https://www.tderflinger.com/en/top-components-libs-comparison.
A better approach may be to recreate something similar to [reakit](https://reakit.io/) that is accessible and has keyboard navigation and focus baked in. Then we could add some styling on top...
We should also generate a warning if any non-private class is enclosed within the `@View` annotated type.
[react-query](https://github.com/tannerlinsley/react-query) has had a 2.x release that is much improved and covers off almost all of our use cases if we ever need to go down this path
Each route has * matching rule * either a render prop, child or children * a potential `Promise`-like (except can also cancel) that is used to determine when routing completes....