rong-react

Modern CSS in JS UI library for React.js

Usage no npm install needed!

<script type="module">
  import rongReact from 'https://cdn.skypack.dev/rong-react';
</script>

README


Rong

Rong is a modern css-in-js UI library for React.js



Quick Start

  1. Install: yarn add styled-components rong-react @ant-design/icons or npm i styled-components rong-react @ant-design/icons

  2. Import :

import { RongTheme, DefaultLightTheme, Button } from "rong-react";
ReactDOM.render(
  <React.StrictMode>
    <RongTheme theme={DefaultLightTheme} mode="light">
      <Button>Hello Rong UI</Button>
    </RongTheme>
  </React.StrictMode>,
  document.getElementById("root")
);