Feat(frontend): Styled Form Components

- Updated README.md
This commit is contained in:
2023-09-04 15:45:26 -04:00
parent 71cb9bdff6
commit 4aba3db888
16 changed files with 1923 additions and 3286 deletions

View File

@@ -4,8 +4,6 @@ import { useLocation } from "react-router";
const ScrollToTop = () => {
const { pathname } = useLocation();
// pathname changes => scroll to top
// scrolling only on navigation
useEffect(() => {
window.scrollTo(0, 0);
}, [pathname]);