Fork UI provides a set of accessible, reusable, and composable React components that make it super easy to create webapps.
- Use common React components directly in your project.
- Customize these components according to your requirements and theme.
- UI development and testing done using Storybook.
- Module Bundler used for this project: rollup.js.
- Docs Site deployed using Netlify.
Run the following command to install forkUI library to your React project Directory
$ npm i forkui-lib
The example below shows how you can import any component from the library and use directly in your code.
import {Button} from "forkui-lib";
function App() {
return(
<div>
<p>This is the button component from Forkui.</p>
<Button text="Button"/>
</div>
)
}
