ConceptPortal-public/rsconcept/frontend/src/pages/RSFormPage/index.tsx

16 lines
312 B
TypeScript
Raw Normal View History

2023-07-15 17:46:19 +03:00
import { useParams } from 'react-router-dom';
2023-07-25 20:27:29 +03:00
2023-07-15 17:46:19 +03:00
import { RSFormState } from '../../context/RSFormContext';
2023-07-27 22:04:25 +03:00
import RSTabs from './RSTabs';
2023-07-15 17:46:19 +03:00
function RSFormPage() {
const { id } = useParams();
return (
2023-07-25 20:27:29 +03:00
<RSFormState schemaID={id ?? ''}>
2023-07-27 22:04:25 +03:00
<RSTabs />
2023-07-15 17:46:19 +03:00
</RSFormState>
);
}
2023-07-25 20:27:29 +03:00
export default RSFormPage;