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