Skip to content

Latest commit

 

History

History
69 lines (49 loc) · 1.24 KB

README.md

File metadata and controls

69 lines (49 loc) · 1.24 KB

siimact test project

This project was bootstrapped with Create React App and it's a test project for siimact

How has been created

I suggest you to you create-react-app tool to create your react app easily.

npx create-react-app my-app
cd my-app
npm start

after that you have to include siimact in your project.

cd my-app
npm install --save-dev siimact

then you include in your app the siimact components

import { Alert, Content } from 'siimact';

and start to use it

<Content>
  <Alert color='orange'>Lorem ipsum dolor sit amet, consectetur adipiscing elit...</Alert>
</Content>

remember to include the Siimple CSS in public/index.html

<head>
  ...

  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/siimple@3.0.0/dist/siimple.min.css">
<head>

then start your application and enjoy the result

npm start

Clone the repository

An alternative to see how the components work is to clone the repository 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