Files
front-impresiones/src/components/NotFound.jsx
T
2026-01-11 20:36:14 -06:00

10 lines
260 B
React

export default function NotFound() {
return (
<div style={{ padding: 40, textAlign: 'center' }}>
<h1>404 - Página no encontrada</h1>
<p>La ruta que buscas no existe.</p>
<a href='/Login'>Login</a>
</div>
);
}
//IO