SIU_Dran_net/frontend/src/Preinscripcion.jsx

14 lines
197 B
React
Raw Normal View History

2024-05-06 13:38:56 +00:00
import SubirPDF from "./SubirPDF";
import React from 'react';
const App = () => {
return (
<div>
<h1>Subir archivo PDF</h1>
<SubirPDF />
</div>
);
};
export default App;