Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.08 KB

README.md

File metadata and controls

37 lines (28 loc) · 1.08 KB

React Duotone Build Status Airbnb JavaScript Style Guide styled with prettier

Example Duotone Image

Installation

npm install --save react-duotone

How to use

import React, { Component } from 'react';
import { render } from 'react-dom';
import { DuotoneImage } from 'react-duotone';

class App extends Component {
  render() {
    return <DuotoneImage
      className='image-preview'
      alt='Your image description'
      src='your-image.jpg'
      primaryColor='#FBFBFB'
      secondaryColor='#283B6B' />;
  }
}

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

Examples

npm install
npm start