Skip to content

Commit 41d3b06

Browse files
refactor(ui): Break SignUp into smaller components based on step (#3878)
1 parent da0035c commit 41d3b06

File tree

6 files changed

+566
-467
lines changed

6 files changed

+566
-467
lines changed

.changeset/curly-monkeys-sort.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---
+15-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
export { SignUpComponent as SignUp } from './sign-up';
1+
import { Root as SignUpRoot } from '@clerk/elements/sign-up';
2+
3+
import { SignUpContinue } from './steps/continue';
4+
import { SignUpStart } from './steps/start';
5+
import { SignUpVerifications } from './steps/verifications';
6+
7+
export function SignUp() {
8+
return (
9+
<SignUpRoot>
10+
<SignUpStart />
11+
<SignUpVerifications />
12+
<SignUpContinue />
13+
</SignUpRoot>
14+
);
15+
}

0 commit comments

Comments
 (0)