style : add app

This commit is contained in:
lukman
2024-07-03 14:28:47 +08:00
parent c4c53547e9
commit b26f184b53
6 changed files with 57 additions and 13 deletions

View File

@@ -0,0 +1,6 @@
import { ViewVerification } from "@/module/auth";
import React from "react";
export default function Verification() {
return <ViewVerification />;
}

View File

@@ -0,0 +1,8 @@
import { ViewWelcome } from "@/module/auth";
import React from "react";
function Page() {
return <ViewWelcome />;
}
export default Page;