added app download route

This commit was merged in pull request #533.
This commit is contained in:
victorAnumudu
2023-12-20 14:39:17 +01:00
parent 5922064c42
commit b3d33f87cf
4 changed files with 38 additions and 8 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from "react";
import AppDownload from "../components/AppDownload/AppDownload";
import { useLocation } from "react-router-dom";
function AppDownloadPage() {
return (
<>
<AppDownload />
</>
);
}
export default AppDownloadPage;