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!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
629B

  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 }, {}) {
  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. </div>
  16. );
  17. }
  18. }
  19. export default WBCollectionBrowse;