-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ui): Break SignUp into smaller components based on step (#3878)
- Loading branch information
1 parent
da0035c
commit 41d3b06
Showing
6 changed files
with
566 additions
and
467 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
--- |
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 +1,15 @@ | ||
export { SignUpComponent as SignUp } from './sign-up'; | ||
import { Root as SignUpRoot } from '@clerk/elements/sign-up'; | ||
|
||
import { SignUpContinue } from './steps/continue'; | ||
import { SignUpStart } from './steps/start'; | ||
import { SignUpVerifications } from './steps/verifications'; | ||
|
||
export function SignUp() { | ||
return ( | ||
<SignUpRoot> | ||
<SignUpStart /> | ||
<SignUpVerifications /> | ||
<SignUpContinue /> | ||
</SignUpRoot> | ||
); | ||
} |
Oops, something went wrong.