12 lines
247 B
React
Raw Normal View History

2024-01-07 21:44:00 +04:00
import { useParams } from 'react-router-dom';
import LinesForm from '../components/lines/form/LinesForm.jsx';
2023-11-27 18:46:31 +04:00
const Redact = () => {
2024-01-07 21:44:00 +04:00
const { id } = useParams();
2023-11-27 18:46:31 +04:00
return (
2024-01-07 21:44:00 +04:00
<LinesForm id={id} />
2023-11-27 18:46:31 +04:00
);
};
export default Redact;