1.0.15 • Published 8 months ago
@nwrks/uikit v1.0.15
@nwrks/uikit
A simple, harmonized React.js components toolkit for building powerful apps.
Installation
Install via npm:
npm i --save @nwrks/uikitCheck 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 storybookContributing
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.