panel.jsx 407 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 './panel.less'
  11. export default class Panel extends React.Component {
  12. render () {
  13. return (
  14. <div id="panel">
  15. <List {...this.props}/>
  16. <SearchBar/>
  17. <Buttons/>
  18. </div>
  19. )
  20. }
  21. }