13 lines
157 B
TypeScript
13 lines
157 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import SignIn from "@/app/components/SignInClient";
|
||
|
|
|
||
|
|
export default function Test() {
|
||
|
|
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<SignIn/>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|