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
Bash

or

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

Usage

index.js / index.ts

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

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;
React JSX

TODO

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

GitHub

React UI Components (npm @assenti/rui-components)Read More

Latest commit to the master branch on 3-26-2022
Download as zip