Skip to content

nagelflorian/react-duotone

Repository files navigation

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