@sigeo/react-remix
v0.19.0
Published
Sigeo - React Remix
Downloads
15
Readme
React Remix
Reusable React components that implement Material Design.
We working on live demo based on Storybook, give us little more time!
Installation
React Remix is available as an npm package.
// With npm
npm install @sigeo/react-remix
// With yarn
yarn add @sigeo/react-remix
Usage
Here is a quick example to get you started, it's all you need:
import React from 'react';
import ReactDOM from 'react-dom';
import Button from '@sigeo/react-remix/dist/Button';
import Input from '@sigeo/react-remix/dist/Input';
function App() {
return (
<>
<Button variant='contained' color='primary'>
Hello World
</Button>
<Input
variant='outlined'
label='Custom label'
placeholder='Hello placeholder'
fullWidth
/>
</>
);
}
ReactDOM.render(<App />, document.querySelector('#app'));
Components
Sigeo Styleguide have several components: you can see it on live demo!
License
Copyright © 2020 Sigeo S.R.L
Licensed under a GPL3+ license: http://www.gnu.org/licenses/gpl-3.0.txt