Forge name is already taken by another library. So from now on this library name is Koval UI. Please update your dependencies to "koval-ui": "0.12.19"
.
React Forge UI is component library built for modern browsers. Each component tries to utilize built in browser APIs to full extent.
- Supports Typescript, bundled types.
- ESM and commonjs bundles.
- Compatible with Nextjs.
- CSS Flex column-based layout.
- Inputs compatible with react-hook-form and similar libraries.
- Built-in form validation.
- Typography components.
See Forge Storybook.
Install library with the package manager of your choice
npm i react-forge-ui
Include Forge css styles and wrap your application with Provider.
import {Provider} from 'react-forge-ui';
import 'react-forge-ui/dist/style.css'
const App = ({children}) => {
//...
return <Provider>{children}</Provider>
}
This project is developed using amazing Webstorm IDE provided by Jetbrains.