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.

30 lines
770B

  1. import { h, Component } from 'preact';
  2. import WBNavbarCommon from 'wb-navbar-common';
  3. import WBArvadosCrumbs from 'wb-arvados-crumbs';
  4. import WBCommonFields from 'wb-common-fields';
  5. import WBProjectFields from 'wb-project-fields';
  6. class WBProjectView extends Component {
  7. render({ app, uuid }, {}) {
  8. return (
  9. <div>
  10. <WBNavbarCommon app={ app } />
  11. <WBArvadosCrumbs app={ app } uuid={ uuid } />
  12. <div class="my-2">
  13. This is the project view for { uuid }
  14. </div>
  15. <h2>Common Fields</h2>
  16. <WBCommonFields app={ app } uuid={ uuid } />
  17. <h2>Project Fields</h2>
  18. <WBProjectFields app={ app } uuid={ uuid } />
  19. </div>
  20. );
  21. }
  22. }
  23. export default WBProjectView;