2024-06-03 05:30:47 +00:00
|
|
|
/* eslint-disable no-unused-vars */
|
2024-05-13 16:05:00 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
|
|
|
|
const EditarPacienteButton = () => {
|
|
|
|
return (
|
|
|
|
<Link to="/editar-paciente">
|
|
|
|
<button>Editar paciente</button>
|
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default EditarPacienteButton;
|