aboutsummaryrefslogtreecommitdiffstats
path: root/mascara/src/app/first-time/breadcrumbs.js
blob: d86e10d4842e204b795777b852a33fd2acadb181 (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
26
import React, { Component } from 'react'
import PropTypes from 'prop-types'

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>
    )
  }

}