hash method of navigation and works well...i think I avoid re-rendering?

This commit is contained in:
talksik
2022-01-30 23:50:03 -08:00
parent 6f9536fd81
commit 16c8d26476
10 changed files with 431 additions and 409 deletions
+19
View File
@@ -0,0 +1,19 @@
import React from "react";
import { FaCheck } from "react-icons/fa";
export default function Done() {
return (
<div className="mx-auto my-auto flex flex-col">
<img
src="/illustrations/undraw_scooter_re_lrsb.svg"
className="h-[15rem] mx-auto my-auto"
/>
<span></span>
<span className="text-slate-400 text-center mt-5">
Add things to <FaCheck className="inline" /> done to <br></br> clear
your mind.
</span>
</div>
);
}