Removed react-css-modules

This commit is contained in:
Scott E. Graves
2019-04-09 12:18:57 -05:00
parent 177fd97c4b
commit 35a38977b6
46 changed files with 201 additions and 1395 deletions

View File

@@ -1,10 +1,9 @@
import React from 'react';
import CSSModules from 'react-css-modules';
import styles from './DependencyList.css';
import './DependencyList.css';
import Dependency from './Dependency/Dependency';
import Box from '../UI/Box/Box';
export default CSSModules((props) => {
export default props => {
const items = props.dependencies.map((k, i)=> {
return (
<Dependency allowDownload={props.allowDownload}
@@ -24,4 +23,4 @@ export default CSSModules((props) => {
</Box>
);
}, styles, {allowMultiple: true});
};