design-tool-kit-react-js
Version:
Library for faster design implementation
45 lines (29 loc) • 764 B
Markdown
Material-based graphical components for easy design in ReactJS, look at the implementation [Here](https://farid-portfolio.herokuapp.com)
This is a React plug-and-play module available through the npm registry.
Before installing, download and install React 16.8.6 or higher is required.
Installation is done using the npm install command:
```shell
npm i design-tool-kit-react-js
```
or
```shell
yarn add design-tool-kit-react-js
```
Labels:
```js
import React from "react";
import { SketchLabel } from "design-tool-kit-react-js";
function App() {
return (
<div className="App">
<SketchLabel />
</div>
);
}
export default App;
```

MIT