@quoin/react-utils
v1.0.17
Published
Utility functions for React
Downloads
18
Readme
Quoin's react utils
Utility library to use React.
Warning
The library expects React
to be global, because it usually comes from an
external lib and not bundled with webpack
, so the easiest when using on the
server-side is to declare it global inside your start script:
# server.js
import React from 'react';
global.React = React;