feat
Deskripsi: - Feature splash screen - Create login page
This commit is contained in:
3
src/app_modules/home/index.ts
Normal file
3
src/app_modules/home/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import HomeView from "./view";
|
||||
|
||||
export {HomeView}
|
||||
11
src/app_modules/home/view.tsx
Normal file
11
src/app_modules/home/view.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
"use client";
|
||||
|
||||
import { Title } from "@mantine/core";
|
||||
|
||||
export default function HomeView() {
|
||||
return (
|
||||
<>
|
||||
<Title>Home</Title>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user