Files
web2app/web/src/App.tsx

24 lines
684 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Route, Routes } from "react-router-dom";
import JobStatus from "./pages/JobStatus";
import Upload from "./pages/Upload";
export default function App() {
return (
<div className="app-shell">
<header className="app-header">
<div>
<p className="eyebrow">Web2App</p>
<h1></h1>
</div>
<p className="subtitle"> zip index.html Windows Android </p>
</header>
<main>
<Routes>
<Route path="/" element={<Upload />} />
<Route path="/jobs/:id" element={<JobStatus />} />
</Routes>
</main>
</div>
);
}