share job

This commit is contained in:
JAE SIK CHO
2026-04-09 11:12:12 +09:00
commit f8427ee1d0
193 changed files with 23830 additions and 0 deletions

View 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>
);
}