Skip to content

Commit

Permalink
refactor(ui): Break SignUp into smaller components based on step (#3878)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcarpenter authored Aug 2, 2024
1 parent da0035c commit 41d3b06
Show file tree
Hide file tree
Showing 6 changed files with 566 additions and 467 deletions.
2 changes: 2 additions & 0 deletions .changeset/curly-monkeys-sort.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
16 changes: 15 additions & 1 deletion packages/ui/src/components/sign-up/index.tsx
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>
);
}
Loading

0 comments on commit 41d3b06

Please sign in to comment.