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
- Host: GitHub
- URL: https://github.com/mirgj/siimact
- Owner: mirgj
- License: mit
- Created: 2018-01-25T10:05:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T02:33:49.000Z (over 3 years ago)
- Last Synced: 2025-06-09T11:29:55.444Z (about 1 year ago)
- Topics: front-end, react, react-components, siimact, siimple, web
- Language: JavaScript
- Homepage:
- Size: 550 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!