mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-25 15:55:48 +00:00
17 lines
455 B
TypeScript
17 lines
455 B
TypeScript
import { Icon } from '@iconify/react';
|
|
import Button from '@/components/Button';
|
|
|
|
const TransferToLaying = () => {
|
|
return (
|
|
<section className='w-full p-4'>
|
|
<h1 className='mb-4'>Transfer to Laying</h1>
|
|
<Button href='/production/transfer-to-laying/add' color='primary'>
|
|
<Icon icon='ic:round-plus' width={24} height={24} />
|
|
Tambah Transfer to Laying
|
|
</Button>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default TransferToLaying;
|