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

https://github.com/mirgj/siimact

siimact: A set of React components for Siimple CSS Framework
https://github.com/mirgj/siimact

front-end react react-components siimact siimple web

Last synced: 5 months ago
JSON representation

siimact: A set of React components for Siimple CSS Framework

Awesome Lists containing this project

README

          

# siimact
> A set of React components for siimple CSS Framework.

## About
**siimact** is a set of components for react that will make more easy to use the _siimple_ framework in your React app. The name is an union of **Sii**mple and Re**act**
You can find the documentation and the examples about Siimple here: https://www.siimple.xyz/documentation

## Getting started
You can install **siimact** from npm

```
npm install --save siimact
```

## Usage
Start to import the **siimact** components in your React application and use it.

```jsx
import React, { Component } from 'react';
import { Alert, Content } from 'siimact';

class App extends Component {
render() {
return (



Lorem ipsum dolor sit amet, consectetur adipiscing elit...


);
}
}

export default App;
```

## Clone the repository
An alternative to see how the components work is to clone the test repository - [siimact-test](https://github.com/mirgj/siimact-test) - and run it locally

```
git clone https://github.com/mirgj/siimact-test.git
```

restore the packages

```
cd siimact-test
npm install
```

and then start it

```
npm start
```

## Documentation

> A more useful documentation will be created soon!