NOVATICS UI contains simple and complex React components, is based on Material UI
Install Novatics UI, it is available as an npm package
npm:
npm install @novatics-ui/coreyarn:
yarn add @novatics-ui/coreCheck our documentation
Here is an example of a basic app using Novatics UI's CurrencyTextField component:
import * as React from 'react';
import CurrencyTextField from '@novatics-ui/currency-text-field';
function App() {
return (
<CurrencyTextField
value={123456}
onChange={() => {
/* setup on change */
}}
/>
);
}In this playground, try changing the props and see how it affects the output and the code.
- Download the project and install dependencies
yarn install- Use nx generators to create the component and the storybook documentation. Visit the Nx Documentation to learn more.
yarn component:generate- Run the storybook to start developing
yarn dev
-
Sign-up all commits, Here is How to Sign using gpg, ssh or S/MIME
-
Create a Pull request and wait for approval.
Deploy Verdaccio on local Docker
yarn verdaccio:upAdd user to verdaccio
yarn verdaccio:addUsernote On linux, there may be a permission error, in this case it is necessary to give permission on the sudo folder.
sudo chown 10001:65533 -R storageCreate versions, push to git and deploy.
yarn versions:create:push:deployThis project is licensed under the terms of the MIT license.