24 lines
677 B
TypeScript
24 lines
677 B
TypeScript
'use client'
|
|
import { LayoutIconBack, LayoutNavbarHome } from '@/module/_global';
|
|
import { Box, Grid, Text } from '@mantine/core';
|
|
import React from 'react';
|
|
|
|
export default function NavbarCreateMember() {
|
|
return (
|
|
<Box>
|
|
<LayoutNavbarHome>
|
|
<Grid justify='center' align='center'>
|
|
<Grid.Col span="auto">
|
|
<LayoutIconBack />
|
|
</Grid.Col>
|
|
<Grid.Col span={6}>
|
|
<Text ta={'center'} fw={'bold'} c={'white'}>Tambah Anggota</Text>
|
|
</Grid.Col>
|
|
<Grid.Col span="auto"></Grid.Col>
|
|
</Grid>
|
|
</LayoutNavbarHome>
|
|
</Box>
|
|
);
|
|
}
|
|
|