Guest User

Untitled

a guest
Jun 25th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import React, { Component } from 'react';
  2. import defaultPage from './defaultPage'
  3.  
  4. class Callback extends Component {
  5. componentDidMount() {
  6. this.props.auth.handleAuthentication();
  7. }
  8.  
  9. render() {
  10. return (
  11. <div>
  12. Loading...
  13. </div>
  14. );
  15. }
  16. }
  17.  
  18. export default defaultPage(Callback);
Add Comment
Please, Sign In to add comment