@barteh/core

a common library for barteh based projects

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@barteh/core
2101.0.624 years ago6 years agoMinified + gzip package size for @barteh/core in KB

Readme

Barteh Core
Build Status

common component and libraries used for barteh based projects

Feature list

a. common services

  1. geo.
  1. orgchart.
  1. unit.
  1. useraction.

b. react components

  1. withTitle.
  1. error.
  1. user.
  1. withMessage.
withTitle
adds title bar to on a component. use it for main forms and pages.

example:

```js import React, { Component } from 'react'; import Home from '@material-ui/icons/Home'; class README extends Component {
render() {
return (
<div>
</div>
);
}
} export default README; withTitle({
title:"page title",
subTitle:"page SubTitle",
description:"page description",
icon:<Home color="primary" style={{fontStyle:"36px"}}/>
})(README) ```