IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

26 rindas
689B

  1. import { h, Component } from 'preact';
  2. import WBNavbarCommon from 'wb-navbar-common';
  3. import WBArvadosCrumbs from 'wb-arvados-crumbs';
  4. import WBCollectionContent from 'wb-collection-content';
  5. class WBCollectionBrowse extends Component {
  6. render({ app, uuid, collectionPath }, {}) {
  7. return (
  8. <div>
  9. <WBNavbarCommon app={ app } />
  10. <WBArvadosCrumbs app={ app } uuid={ uuid } />
  11. <div class="my-2">
  12. This is the collection browser for { uuid }
  13. </div>
  14. <WBCollectionContent app={ app } uuid={ uuid }
  15. collectionPath={ collectionPath }/>
  16. </div>
  17. );
  18. }
  19. }
  20. export default WBCollectionBrowse;