mirror of
https://github.com/linsa-io/linsa.git
synced 2026-04-23 08:48:37 +02:00
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
import { SignUp } from "@clerk/tanstack-start"
|
|
import { createFileRoute } from "@tanstack/react-router"
|
|
|
|
export const Route = createFileRoute("/_layout/(auth)/_auth/sign-up/$")({
|
|
component: () => <SignUpComponent />,
|
|
})
|
|
|
|
function SignUpComponent() {
|
|
return (
|
|
<div className="flex justify-center py-24">
|
|
<SignUp />
|
|
</div>
|
|
)
|
|
}
|