fga-eps-mds/2019.2-Vsign

View on GitHub
frontend/src/components/InstructionsPage/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import React, { Fragment } from 'react';
import Navbar from '../Shared/Navbar';
import Instructions from './Instructions';
import { connect } from 'react-redux';

function InstructionsPage({ history, ...props }) {
  return (
    <Fragment>
      <Navbar />
      {/* <SigningSteps history={history} /> */}
      <Instructions />
    </Fragment>
  )
};

export default connect(null, null)(InstructionsPage);