React UI Components

UI Components for web apps built on React.

Main Goal

Create a lot of usefull, light weight and maximum reusable UI components.

Install

# Install package from NPM
% npm install @assenti/rui-components -S

or

# Install package from NPM
% yarn add @assenti/rui-components

Usage

index.js / index.ts

// Import styles in index.js / index.ts
import '@assenti/rui-components/css/index.css';

App.js / App.tsx

import { Card, Button, Icon } from '@assenti/rui-components';
import React from 'react';

function App() {
  return (
    <Card header={<h4>React UI Components</h4>}>
      <Button color="primary" name="Rocket" icon={<Icon name="rocket"/>}"/>
    </Card>
  );
}

export default App;

TODO

  • [ ] Stepper
  • [ ] Range
  • [ ] TransferLists
  • [ ] Dashboard Layout
  • [ ] ThemeProvider
  • [ ] Make components adaptive for mobile devices

GitHub