style : add module
Deskripsi: - add global - add login - add varification - add welcome - add home No issue
This commit is contained in:
3
src/module/home/index.ts
Normal file
3
src/module/home/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import ViewHome from "./view/view_home";
|
||||
|
||||
export {ViewHome}
|
||||
17
src/module/home/view/view_home.tsx
Normal file
17
src/module/home/view/view_home.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { LayoutNavbarHome } from '@/module/_global';
|
||||
import { Group, Text } from '@mantine/core';
|
||||
import React from 'react';
|
||||
|
||||
export default function ViewHome() {
|
||||
return (
|
||||
<>
|
||||
<LayoutNavbarHome>
|
||||
<Group justify='space-between'>
|
||||
<Text fw={'bold'} c={'white'} >Perbekal Darmasaba</Text>
|
||||
<Text fw={'bold'} c={'white'} >icon</Text>
|
||||
</Group>
|
||||
</LayoutNavbarHome>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user