A set of React components for siimple CSS Framework.
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 Siimple and React You can find the documentation and the examples about Siimple here: https://www.siimple.xyz/documentation
You can install siimact from npm
npm install --save siimact
Start to import the siimact components in your React application and use it.
import React, { Component } from 'react';
import { Alert, Content } from 'siimact';
class App extends Component {
render() {
return (
<div>
<Content>
<Alert color='orange'>Lorem ipsum dolor sit amet, consectetur adipiscing elit...</Alert>
</Content>
</div>
);
}
}
export default App;
An alternative to see how the components work is to clone the test repository - 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
A more useful documentation will be created soon!