mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-01 16:50:12 +08:00
Add /tasks/all route to website
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import Head from "next/head";
|
||||
import { TaskOption } from "src/components/Dashboard";
|
||||
import { getDashboardLayout } from "src/components/Layout";
|
||||
|
||||
const AllTasks = () => {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>All Tasks - Open Assistant</title>
|
||||
<meta name="description" content="All tasks for Open Assistant." />
|
||||
</Head>
|
||||
<TaskOption />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
AllTasks.getLayout = (page) => getDashboardLayout(page);
|
||||
|
||||
export default AllTasks;
|
||||
Reference in New Issue
Block a user