Skip to content

Commit

Permalink
login callback ui change
Browse files Browse the repository at this point in the history
  • Loading branch information
gamer-1478 committed Apr 4, 2022
1 parent ccb174d commit 63a5099
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion react-app/src/Pages/Login/LoginCallback.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Axios from 'axios'
import React, { useEffect } from 'react'
import { Oval } from 'react-loader-spinner';
import { urlPrefix } from '../../Components/reuse/Misc'

function LoginCallback() {
Expand All @@ -22,7 +23,9 @@ function LoginCallback() {
})
}, []);
return (
<h1>Loading</h1>
<div className='loading'>
<Oval color="var(--loading)" secondaryColor="var(--loading)" ariaLabel='loading' height={100} width={100} />
</div >
)
}

Expand Down

0 comments on commit 63a5099

Please sign in to comment.