diff options
Diffstat (limited to 'mascara/src/app/first-time/breadcrumbs.js')
-rw-r--r-- | mascara/src/app/first-time/breadcrumbs.js | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/mascara/src/app/first-time/breadcrumbs.js b/mascara/src/app/first-time/breadcrumbs.js deleted file mode 100644 index d86e10d48..000000000 --- a/mascara/src/app/first-time/breadcrumbs.js +++ /dev/null @@ -1,26 +0,0 @@ -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> - ) - } - -} |