@coconut-beta/react-ui
v0.0.2
Published
A sleek and modern tailwind based design system for react applications
Readme
Onion UI
A sleek and modern tailwind based design system for react applications
Installation
- :arrow_down: Install the package
yarn add onion-ui- :blue_heart: Start using the package
import React from "react";
import { Input, Button } from "onion-ui";
const App = () => {
return (
<div>
<Input value={value} onChange={onChangeValue} />
<Button onClick={handleOnClick}>Submit</Button>
</div>
);
};
export default App;