WIP.
Old MIUI inspired design components for React. Breaking changes may happen until 1.0.0.
Usage:
cssReset named export and include it in <style> taginjectGlobalStyles function, call it from your root componentgetCssText named export, call it and include result in <style> tagYour bundler needs to handle scss files, including scss modules.
For next.js projects use something like this with your next.config.js:
const createTranspileModules = require("next-transpile-modules");
const withTM = createTranspileModules(["react-miui"]);
module.exports = withTM({});