Merge pull request #58 from bipproduction/lukman/17-juli-2024
Lukman/17 juli 2024
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import { ViewEditAnggotaDivision } from "@/module/division_new";
|
||||
|
||||
function Page() {
|
||||
return (
|
||||
<>Edit Anggota divisi</>
|
||||
<ViewEditAnggotaDivision/>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import { ViewEditDivision } from "@/module/division_new"
|
||||
|
||||
function Page() {
|
||||
return (
|
||||
<>Edit Divisi</>
|
||||
<ViewEditDivision/>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import { ViewInformationDivision } from "@/module/division_new";
|
||||
|
||||
function Page() {
|
||||
return (
|
||||
<>informasi divisi</>
|
||||
<ViewInformationDivision/>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import { ViewReportDivision } from "@/module/division_new"
|
||||
|
||||
function Page() {
|
||||
return (
|
||||
<>Report divisi</>
|
||||
<ViewReportDivision/>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
25
src/module/division_new/components/information_division.tsx
Normal file
25
src/module/division_new/components/information_division.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import { LayoutNavbarNew, WARNA } from '@/module/_global';
|
||||
import { Box, Text, Title } from '@mantine/core';
|
||||
import React from 'react';
|
||||
|
||||
export default function InformationDivision() {
|
||||
return (
|
||||
<Box>
|
||||
<LayoutNavbarNew back="/division/1" title=""
|
||||
menu
|
||||
/>
|
||||
<Box p={20}>
|
||||
<Title order={3} fw={"bold"} ta={"center"}>DIVISI KEROHANIAN</Title>
|
||||
<Box mt={20}>
|
||||
<Text fw={"bold"}>Deskripsi</Text>
|
||||
<Box p={20} style={{
|
||||
border: `1px solid ${WARNA.borderBiruMuda}`,
|
||||
borderRadius: 10
|
||||
}}>
|
||||
<Text>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </Text>
|
||||
</Box>
|
||||
</Box>
|
||||
</Box>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
@@ -1,11 +1,13 @@
|
||||
"use client"
|
||||
import { WARNA } from "@/module/_global";
|
||||
import { Box, Stack, SimpleGrid, Flex, Text } from "@mantine/core";
|
||||
import router from "next/router";
|
||||
import { useRouter } from "next/navigation";
|
||||
import { BsInfoCircle } from "react-icons/bs";
|
||||
import { FaPencil } from "react-icons/fa6";
|
||||
import { TbReportAnalytics } from "react-icons/tb";
|
||||
|
||||
export default function DrawerDetailDivision() {
|
||||
const router = useRouter()
|
||||
return (
|
||||
<Box>
|
||||
<Stack pt={10}>
|
||||
|
||||
@@ -22,6 +22,10 @@ import ViewCreateDivision from "./view/view_create_division";
|
||||
import ViewCreateReport from "./view/view_create_report";
|
||||
import ViewDetailDivision from "./view/view_detail_division";
|
||||
import ViewDivision from "./view/view_division";
|
||||
import ViewEditAnggotaDivision from "./view/view_edit_anggota_division";
|
||||
import ViewEditDivision from "./view/view_edit_division";
|
||||
import ViewInformationDivision from "./view/view_Information_division";
|
||||
import ViewReportDivision from "./view/view_report_division";
|
||||
|
||||
export { ViewDivision }
|
||||
export { ViewCreateDivision }
|
||||
@@ -47,4 +51,7 @@ export { ViewCreateDiscussion }
|
||||
export { ViewDetailDiscussion }
|
||||
export { ViewEditDiscussion }
|
||||
export { ViewDocumentDivision }
|
||||
|
||||
export { ViewReportDivision }
|
||||
export { ViewInformationDivision }
|
||||
export { ViewEditDivision }
|
||||
export { ViewEditAnggotaDivision }
|
||||
|
||||
11
src/module/division_new/view/view_Information_division.tsx
Normal file
11
src/module/division_new/view/view_Information_division.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
import InformationDivision from '../components/information_division';
|
||||
import { Box } from '@mantine/core';
|
||||
|
||||
export default function ViewInformationDivision() {
|
||||
return (
|
||||
<Box>
|
||||
<InformationDivision/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
10
src/module/division_new/view/view_edit_anggota_division.tsx
Normal file
10
src/module/division_new/view/view_edit_anggota_division.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React from 'react';
|
||||
|
||||
export default function ViewEditAnggotaDivision() {
|
||||
return (
|
||||
<div>
|
||||
ViewEditAnggotaDivision
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
10
src/module/division_new/view/view_edit_division.tsx
Normal file
10
src/module/division_new/view/view_edit_division.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React from 'react';
|
||||
|
||||
export default function ViewEditDivision() {
|
||||
return (
|
||||
<div>
|
||||
ViewEditDivision
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
10
src/module/division_new/view/view_report_division.tsx
Normal file
10
src/module/division_new/view/view_report_division.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React from 'react';
|
||||
|
||||
export default function ViewReportDivision() {
|
||||
return (
|
||||
<div>
|
||||
ViewReportDivision
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user