coming-ui
React UI is a react UI library that uses the latest design language
- Documentation - https://comingui.org
- npm - https://www.npmjs.com/package/coming
How is it used in a project?
$ yarn add coming
or
$ npm i coming
import { Button } from "coming";
const ComingDemo = () => {
return (
<>
<Button>Button</Button>
</>
);
};