mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-27 21:40:36 +03:00
14 lines
316 B
TypeScript
14 lines
316 B
TypeScript
import { useParams } from 'react-router-dom';
|
|
import { RSFormState } from '../../context/RSFormContext';
|
|
import RSFormTabs from './RSFormTabs';
|
|
|
|
function RSFormPage() {
|
|
const { id } = useParams();
|
|
return (
|
|
<RSFormState id={id || ''}>
|
|
<RSFormTabs />
|
|
</RSFormState>
|
|
);
|
|
}
|
|
|
|
export default RSFormPage; |