diff --git a/app/renderer/components/list.js b/app/renderer/components/list.js new file mode 100644 index 0000000000..35279eb420 --- /dev/null +++ b/app/renderer/components/list.js @@ -0,0 +1,36 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +const React = require('react') +const ImmutableComponent = require('../../../js/components/immutableComponent') +const {StyleSheet, css} = require('aphrodite/no-important') +const globalStyles = require('./styles/global') + +class List extends ImmutableComponent { + render () { + const className = css( + this.props['data-isDownload'] && styles.isDownload + ) + + return
+ } +} + +class DownloadList extends ImmutableComponent { + render () { + return