Violin-UI is available as an npm package.
// with npm
npm install styled-components @involves/violin
// with yarn
yarn add styled-components @involves/violin
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 '@involves/violin';
function App() {
return (
<Button primary>
Hello World!
</Button>
);
}
ReactDOM.render(<App />, document.querySelector('#app'));
Yes, it's really all you need to get started.
Check out our documentation website.
This project is licensed under the terms of the MIT license.