Files
Users-Wrench/src/views/AppDownloadPage.jsx
T
2023-12-20 14:39:17 +01:00

14 lines
258 B
React

import React from "react";
import AppDownload from "../components/AppDownload/AppDownload";
import { useLocation } from "react-router-dom";
function AppDownloadPage() {
return (
<>
<AppDownload />
</>
);
}
export default AppDownloadPage;