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.

20 rindas
418B

  1. import { h, Component } from 'preact';
  2. import { route } from 'preact-router';
  3. class WBSignOut extends Component {
  4. componentDidMount() {
  5. delete window.localStorage['arvHost'];
  6. delete window.localStorage['arvToken'];
  7. delete window.localStorage['currentUser'];
  8. route('/sign-in');
  9. }
  10. render() {
  11. return (
  12. <div>Signing out...</div>
  13. );
  14. }
  15. }
  16. export default WBSignOut;