Skip to content
Snippets Groups Projects
Commit 9c7ef685 authored by Jack Reed's avatar Jack Reed
Browse files

fix linting issue

parent 56a35b0e
Branches
Tags
No related merge requests found
import React from 'react';
import { connect } from 'react-redux';
import PropTypes from 'prop-types';
// import { actions } from '../store';
// import Window from './Window';
/**
* Represents a work area that contains any number of windows
......@@ -18,7 +15,9 @@ const Workspace = ({ windows }) => (
className="window"
key={window.id}
id={window.id}
>{window.manifestId}</div>
>
{window.manifestId}
</div>
))
}
</div>
......@@ -39,5 +38,4 @@ const mapStateToProps = state => (
}
);
// const mapDispatchToProps = dispatch => ({});
export default connect(mapStateToProps)(Workspace); // mapDispatchToProps,
export default connect(mapStateToProps)(Workspace);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment