Portal/rsconcept/frontend/src/pages/OssPage/OssPage.tsx

19 lines
310 B
TypeScript
Raw Normal View History

2024-06-07 20:17:03 +03:00
'use client';
2024-11-25 19:52:57 +03:00
import { useParams } from 'react-router';
2024-06-07 20:17:03 +03:00
import { OssState } from '@/context/OssContext';
import OssTabs from './OssTabs';
function OssPage() {
const params = useParams();
return (
2025-01-15 23:03:23 +03:00
<OssState itemID={params.id ?? ''}>
<OssTabs />
</OssState>
2024-06-07 20:17:03 +03:00
);
}
export default OssPage;