|
|
@ -1,5 +1,6 @@ |
|
|
|
import React, { Component } from 'react' |
|
|
|
import PropTypes from 'prop-types' |
|
|
|
import { FaAlignJustify, FaThLarge } from 'react-icons/lib/fa' |
|
|
|
import { MdSearch } from 'react-icons/lib/md' |
|
|
|
import styles from './Channels.scss' |
|
|
|
|
|
|
@ -16,7 +17,7 @@ class Channels extends Component { |
|
|
|
return ( |
|
|
|
<div className={styles.container}> |
|
|
|
<div className={styles.search}> |
|
|
|
<label className={`${styles.label} ${styles.input}`} htmlFor='invoiceSearch'> |
|
|
|
<label className={`${styles.label} ${styles.input}`} htmlFor='channelSearch'> |
|
|
|
<MdSearch /> |
|
|
|
</label> |
|
|
|
<input |
|
|
@ -25,10 +26,28 @@ class Channels extends Component { |
|
|
|
className={`${styles.text} ${styles.input}`} |
|
|
|
placeholder='Search channels by funding transaction, channel id, remote public key, etc' |
|
|
|
type='text' |
|
|
|
id='invoiceSearch' |
|
|
|
id='channelSearch' |
|
|
|
/> |
|
|
|
</div> |
|
|
|
channels |
|
|
|
<header className={styles.header}> |
|
|
|
<div className={styles.layoutsContainer}> |
|
|
|
<span className={styles.active}> |
|
|
|
<FaAlignJustify /> |
|
|
|
</span> |
|
|
|
<span> |
|
|
|
<FaThLarge /> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
<div className={styles.createChannelContainer}> |
|
|
|
<div className='buttonPrimary'> |
|
|
|
Create new channel |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</header> |
|
|
|
|
|
|
|
<div className={styles.channels}> |
|
|
|
channels |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
) |
|
|
|
} |
|
|
|