-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client): created note generation page and payment plan page
- Loading branch information
1 parent
804309c
commit 7800aa2
Showing
18 changed files
with
501 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
import { useEffect } from "react"; | ||
import { lazy, useEffect } from "react"; | ||
|
||
import { useAuth } from "~features/auth"; | ||
|
||
const Loader = lazy(() => import("~components/loader/Loader")); | ||
|
||
const MyInfoCallback = () => { | ||
const { myInfoAuth } = useAuth(); | ||
|
||
useEffect(() => { | ||
myInfoAuth(); | ||
}, []); | ||
|
||
return <></>; | ||
return <Loader />; | ||
}; | ||
|
||
export default MyInfoCallback; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
import { useEffect } from "react"; | ||
import { lazy, useEffect } from "react"; | ||
|
||
import { useAuth } from "~features/auth"; | ||
|
||
const Loader = lazy(() => import("~components/loader/Loader")); | ||
|
||
const SgIDCallback = () => { | ||
const { sgIdAuth } = useAuth(); | ||
|
||
useEffect(() => { | ||
sgIdAuth(); | ||
}, []); | ||
|
||
return <></>; | ||
return <Loader />; | ||
}; | ||
|
||
export default SgIDCallback; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.