Panel.jsx 451 B

123456789101112131415161718192021222324
  1. /**
  2. * @author oldj
  3. * @blog http://oldj.net
  4. */
  5. 'use strict'
  6. import React from 'react'
  7. import Buttons from './Buttons'
  8. //import SearchBar from './searchbar'
  9. import List from './List'
  10. import styles from './Panel.less'
  11. export default class Panel extends React.Component {
  12. render () {
  13. return (
  14. <div id="panel" className={styles.root}>
  15. <List {...this.props}/>
  16. {/*<SearchBar/>*/}
  17. <Buttons/>
  18. </div>
  19. )
  20. }
  21. }