aboutsummaryrefslogtreecommitdiffstats
path: root/mascara/src/app/first-time/breadcrumbs.js
blob: f8460d2004176a18beb0435873af2f2db9cc7786 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React, {Component, PropTypes} from 'react'

export default class Breadcrumbs extends Component {

  static propTypes = {
    total: PropTypes.number,
    currentIndex: PropTypes.number
  };

  render() {
    const {total, currentIndex} = this.props
    return (
      <div className="breadcrumbs">
        {Array(total).fill().map((_, i) => (
          <div
            key={i}
            className="breadcrumb"
            style={{backgroundColor: i === currentIndex ? '#D8D8D8' : '#FFFFFF'}}
          />
        ))}
      </div>
    );
  }

}