No description
|
|
||
|---|---|---|
| .github/workflows | ||
| .storybook | ||
| büng | ||
| src | ||
| .bung.yml | ||
| .gitignore | ||
| .yarnrc.yml | ||
| eslint.config.js | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
| vite.config.js | ||
@nwrks/uikit
A simple, harmonized React.js components toolkit for building powerful apps.
Installation
Install via npm:
npm i --save @nwrks/uikit
Check the latest version on NPM.
Usage
Wrap your main React component with AppActivity:
import React from 'react';
import { AppActivity } from '@nwrks/uikit';
function App () {
return (
<AppActivity theme={'Light'}>
{/* Your components goes here */}
</AppActivity>
);
}
export default App;
Example
import React from 'react';
import { Button, AppActivity } from '@nwrks/uikit';
function App () {
return (
<AppActivity theme={'Light'}>
<Button color="Primary">Click Me</Button>
</AppActivity>
);
}
export default App;
Storybook
Launch Storybook to view and test components:
npm run storybook
Contributing
Fork the repo at nukaworks/toolkits/UiKit, create a branch, and submit a pull request.
Need more?
Go on our developer documentation center and checkout UiKit, you can find more documentation, code example and support.