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.

20 line
526B

  1. import { h, Component } from 'preact';
  2. import WBNavbar from 'wb-navbar';
  3. import WBProjectListing from 'wb-project-listing';
  4. class WBBrowse extends Component {
  5. render({ ownerUuid }) {
  6. return (
  7. <div>
  8. <WBNavbar />
  9. <WBProjectListing arvHost="api.arkau.roche.com"
  10. arvToken="v2/arkau-gj3su-uf4hnu2o2qkvm8j/15kla38mafzq6b31d5t74ynhk6iuy32v1ticslodr0obvvhde9"
  11. ownerUuid={ ownerUuid }
  12. itemsPerPage="5" />
  13. </div>
  14. );
  15. }
  16. }
  17. export default WBBrowse;