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;
|