import { useParams } from 'react-router-dom'; import LinesForm from '../components/lines/form/LinesForm.jsx'; const Redact = () => { const { id } = useParams(); return ( ); }; export default Redact;