const classNames = require('classnames');
const PropTypes = require('prop-types');
const React = require('react');
require('./stepnavigation.scss');
const StepNavigation = props => (
{Array.apply(null, Array(props.steps)).map((v, step) => (
-
))}
);
StepNavigation.propTypes = {
active: PropTypes.number,
className: PropTypes.string,
steps: PropTypes.number
};
module.exports = StepNavigation;