react-otion

0.6.2 • Public • Published

react-otion

Server-side React bindings for otion, the atomic CSS-in-JS library.

Usage

Install the library and its bindings with a package manager of choice, e.g.:

npm install otion react-otion

Server-side rendering

A special renderer is available for instantiating <style> JSX elements on the server, as seen in the Next.js example:

import { setup } from "otion";
import { getStyleElement, VirtualInjector } from "react-otion/server";
 
const injector = VirtualInjector();
setup({ ...sharedOptions, injector });
 
// The resulting HTML code could be used for critical CSS extraction
renderToString(rootElement);
 
const styleElement = getStyleElement(injector);
setHeadComponents(styleElement);

All methods of otion/server are re-exported for convenience, as seen in the previous snippet.

Single-page applications

This package is not necessary for single page React applications, e.g. those built with Create React App.

Package Sidebar

Install

npm i react-otion

Weekly Downloads

5

Version

0.6.2

License

MIT

Unpacked Size

13.6 kB

Total Files

11

Last publish

Collaborators

  • kripod