0.0.6 • Published 5 years ago

@react-vibrant/core v0.0.6

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

@react-vibrant/core

List of components exposed:

  • Button
  • Checkbox
  • Control
  • Delete
  • Input
  • ProgressBar
  • Radio
  • Select
  • Table
  • Tag
  • TextArea

Usage:

Add the following file in app index:

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
// Import styles
import '@react-vibrant/core/build/index.css';

ReactDOM.render(<App />, document.getElementById('root'));

Then:

import { Button } from '@react-vibrant/core';

function App() {
  return (
    <Button type="primary">Awesome button</Button>
  );
}