No description
Find a file
Powerm1nt ee994223c5
Some checks failed
CodeQL / Analyze (push) Has been cancelled
1.0.12
2025-05-08 20:07:16 +02:00
.github/workflows Eslint fixes 2024-04-20 22:48:03 +02:00
.storybook fixed storybook by converting the main script to es modules 2025-04-01 21:35:59 +02:00
büng Eslint fixes 2024-04-20 22:51:09 +02:00
src Refactor index.ts to include new components: DefaultLight theme, Tooltip, ProgressBar, and Image. Updated exports for better organization of base, layout, app, and miscellaneous components. 2025-04-03 11:05:29 +02:00
.bung.yml Eslint fixes 2024-04-20 22:48:03 +02:00
.gitignore Switched to yarn 2 2024-12-18 02:17:02 +01:00
.yarnrc.yml Switched to yarn 2 2024-12-18 02:17:02 +01:00
eslint.config.js Eslint fixes 2024-04-20 22:51:09 +02:00
LICENSE Create LICENSE 2022-10-22 19:01:13 +02:00
package-lock.json 1.0.12 2025-05-08 20:07:16 +02:00
package.json 1.0.12 2025-05-08 20:07:16 +02:00
README.md Fixed typo 2025-03-20 20:27:15 +01:00
tsconfig.json Eslint fixes 2024-04-20 22:48:03 +02:00
vite.config.js 🐛 Fixed dest path 2022-07-28 22:21:34 +02:00

@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.