11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
|
|
import SignUp from "@/components/form/sign-up";
|
||
|
|
import React from "react";
|
||
|
|
|
||
|
|
export default function AuthSignUpPage() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<SignUp />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|