mirror of
https://github.com/linsa-io/linsa.git
synced 2026-04-27 10:47:14 +02:00
Move to TanStack Start from Next.js (#184)
This commit is contained in:
14
web/app/routes/_layout/(auth)/_auth.sign-up.$.tsx
Normal file
14
web/app/routes/_layout/(auth)/_auth.sign-up.$.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user