mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-22 06:15:47 +00:00
20 lines
481 B
TypeScript
20 lines
481 B
TypeScript
import HppExpeditionClosingTable from '@/components/pages/closing/table/HppExpeditionClosingTable';
|
|
|
|
interface HppExpeditionClosingTabProps {
|
|
projectFlockId: number;
|
|
}
|
|
|
|
const HppExpeditionClosingTab = ({
|
|
projectFlockId,
|
|
}: HppExpeditionClosingTabProps) => {
|
|
return (
|
|
<div className='flex flex-col gap-4'>
|
|
{projectFlockId && (
|
|
<HppExpeditionClosingTable projectFlockId={projectFlockId} />
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default HppExpeditionClosingTab;
|