@rpcbase/client 0.27.0 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/auth/SignOut/index.js +2 -1
- package/auth/index.js +2 -0
- package/package.json +1 -1
package/auth/SignOut/index.js
CHANGED
|
@@ -33,8 +33,9 @@ const SignOut = () => {
|
|
|
33
33
|
</div>
|
|
34
34
|
)}
|
|
35
35
|
{isSignedOut && (
|
|
36
|
-
<div className="mt-3 d-flex justify-content-center align-items-center">
|
|
36
|
+
<div className="mt-3 d-flex flex-column flex-1 justify-content-center align-items-center">
|
|
37
37
|
<div className="">Signed out</div>
|
|
38
|
+
<a href="/">Home</a>
|
|
38
39
|
</div>
|
|
39
40
|
)}
|
|
40
41
|
</div>
|
package/auth/index.js
CHANGED