mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-08-04 12:33:56 +08:00
21 lines
615 B
TypeScript
21 lines
615 B
TypeScript
import Head from "next/head";
|
|
import { TaskOption } from "src/components/Dashboard";
|
|
import { getDashboardLayout } from "src/components/Layout";
|
|
import { TaskCategory } from "src/components/Tasks/TaskTypes";
|
|
|
|
const AllTasks = () => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>All Tasks - Open Assistant</title>
|
|
<meta name="description" content="All tasks for Open Assistant." />
|
|
</Head>
|
|
<TaskOption displayTaskCategories={[TaskCategory.Create, TaskCategory.Evaluate, TaskCategory.Label]} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
AllTasks.getLayout = (page) => getDashboardLayout(page);
|
|
|
|
export default AllTasks;
|