upd: pengumuman
Deskripsi: - tambah pengumuman - detail pengumuman - edit pengumuman No Issues
This commit is contained in:
37
src/module/announcement/component/detail_announcement.tsx
Normal file
37
src/module/announcement/component/detail_announcement.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
import { Box, Group, Stack, Text } from "@mantine/core";
|
||||
import { BsCardText } from "react-icons/bs";
|
||||
import { TfiAnnouncement } from "react-icons/tfi";
|
||||
|
||||
export default function DetailAnnouncement() {
|
||||
return (
|
||||
<Box py={30} px={20}>
|
||||
<Box p={20} style={{ borderRadius: 10, border: '1px solid #E5E5E5' }} bg={'white'} >
|
||||
<Stack>
|
||||
<Group>
|
||||
<TfiAnnouncement size={25} />
|
||||
<Text fw={'bold'}>Pengumuman Dinas</Text>
|
||||
</Group>
|
||||
<Group>
|
||||
<BsCardText size={25} />
|
||||
<Text>Pengumuman agar menggunakan</Text>
|
||||
</Group>
|
||||
</Stack>
|
||||
</Box>
|
||||
<Box my={15} p={20} style={{ borderRadius: 10, border: '1px solid #E5E5E5' }} bg={'white'} >
|
||||
<Stack>
|
||||
<Text fw={'bold'}>Anggota</Text>
|
||||
<Group>
|
||||
<Text>LPD</Text>
|
||||
</Group>
|
||||
<Group>
|
||||
<Text>PKK</Text>
|
||||
</Group>
|
||||
<Group>
|
||||
<Text>Karang Taruna</Text>
|
||||
</Group>
|
||||
</Stack>
|
||||
</Box>
|
||||
</Box>
|
||||
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user