An experimental playground used for trying out ideas regarding building views with React. Current project is building out a UI library with some specific tests in mind:
- Component CSS
- Instead of creating regular
CSS(read: any files that generateCSS) files, try using only inline styles defined within the components themselves.
- Web Animations
- Rather than controlling classes from
jsthat includeCSSbased animations/transitions, try defining and controlling those animations with the Web Animation API.
- Style Transition Group
- Test bed for
ReactStyleTransitionGroupwhich functions almost the same as the addonReactCSSTransitionGroup, however instead of altering classes, it can apply a set of styles (which can be generated at render).
This is still very experimental, so support is limited to Chrome only for now.