We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4dc7b7 commit 173d998Copy full SHA for 173d998
README.md
@@ -1,6 +1,18 @@
1
-According to the [benchmark here](https://github.com/krausest/js-framework-benchmark)
+## Install
2
3
-
+```sh
4
+npm i @casual-ui/react
5
+```
6
-# React now becomes the worst performance framework among all. And not to mention that the syntax/API is very anti-human.
-# It is not worthy to maintain anything based on React anymore.
7
+## Usage
8
+
9
+* import style in your client entry
10
+```js
11
+import '@casual-ui/react/dist/style.css'
12
13
+* use in jsx/tsx
14
+```jsx
15
+import { CButton } from '@casual-ui/react'
16
17
+const App = () => <CButton label="A Button" />
18
0 commit comments