13 lines
265 B
TypeScript
13 lines
265 B
TypeScript
import { Box } from '@mantine/core';
|
|
import React from 'react';
|
|
import CreateAnggotaDivision from '../components/create_anggota_division';
|
|
|
|
export default function ViewCreateAnggotaDivision() {
|
|
return (
|
|
<Box>
|
|
<CreateAnggotaDivision/>
|
|
</Box>
|
|
);
|
|
}
|
|
|