share job
This commit is contained in:
14
frontend/src/app/(main)/tam/0020/write/page.tsx
Normal file
14
frontend/src/app/(main)/tam/0020/write/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
'use client';
|
||||
|
||||
import { useRouter } from 'next/navigation';
|
||||
import ApvreqForm from '@/components/tam/ApvreqForm';
|
||||
|
||||
export default function Tam0020WritePage() {
|
||||
const router = useRouter();
|
||||
return (
|
||||
<div className="p-4">
|
||||
<h2 className="text-lg font-semibold mb-4">결재 신청서 작성</h2>
|
||||
<ApvreqForm onSuccess={() => router.push('/tam/0020/list')} onCancel={() => router.push('/tam/0020/list')} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user