An open API service indexing awesome lists of open source software.

https://github.com/harshalslimaye/locos

Lightweight React like library for building modern UIs. :snowman:
https://github.com/harshalslimaye/locos

javascript-framework javascript-library jsx react react-like reactdom virtual-dom

Last synced: 3 months ago
JSON representation

Lightweight React like library for building modern UIs. :snowman:

Awesome Lists containing this project

README

        

# Locos
Locos (pronounced /loʊ-cɒs:/, like Low cost)is a lightweight React like library for building modern UIs. :snowman:

## Features
- Functional components
- render props
- Lightweight
- No dependencies
- React like API

## Installation
```
npm install locos
```

## Usage
```js
import Locos from 'locos';

const Greet = (props) => {
return

Hello {props.name}!

};

Locos.render(
,
document.querySelector('#root')
);
```