README
react-components
Installation
react-components is available as an npm package.
// with npm
npm i @artemelka/react-components
// with yarn
yarn add @artemelka/react-components
Usage
Here is a quick example to get you started, it's all you need:
import * as React from 'react';
import ReactDOM from 'react-dom';
import { Button } from '@artemelka/react-components';
function App() {
return <Button value="text" />;
}
ReactDOM.render(<App />, document.querySelector('#app'));
Examples
Are you looking for an example project to get started? I host some.
Documentation
Check out our documentation website.