vrsdesign
v2.0.54
Published
Specialized Material-UI components that used for Verisis projects.
Downloads
222
Readme
Verisis UI Elements
Description
Specialized/modified Material UI components that used for Verisis projects.
Installation
Verisis UI is available as an npm package.
// with npm
npm install @material-ui/core @material-ui/icons @material-ui/pickers
npm install vrsdesign
// with yarn
yarn add @material-ui/core @material-ui/icons @material-ui/pickers
yarn add vrsdesign
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 { VrsTextField } from 'vrsdesign';
function App() {
return (
<VrsTextField label="What is your name?" />
);
}
ReactDOM.render(<App />, document.getElementById('root'));
Documentation
There is no documentation at this moment. But you can see components with yarn start
after cloning this repository. Do not forget to make yarn install
of course. We create a storybook to guide us.
Licence
This project is licensed under the terms of the MIT license.