ChangesDonePage.js 332 B

1234567891011121314
  1. import React from "react";
  2. import { Link } from "react-router-dom";
  3. export const ChangesDone = () => {
  4. return (
  5. <div className="changesSaved">
  6. <h1>Changes saved ✔</h1>
  7. <Link to="/profile" className="changepasLink">
  8. Back to profile
  9. </Link>
  10. </div>
  11. );
  12. };