mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-29 11:15:42 +08:00
22 lines
646 B
TypeScript
22 lines
646 B
TypeScript
import Head from "next/head";
|
|
import { TaskOption } from "src/components/Dashboard";
|
|
import { allTaskOptions } from "src/components/Dashboard/TaskOption";
|
|
import { getDashboardLayout } from "src/components/Layout";
|
|
export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props";
|
|
|
|
const AllTasks = () => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>All Tasks - Open Assistant</title>
|
|
<meta name="description" content="All tasks for Open Assistant." />
|
|
</Head>
|
|
<TaskOption content={allTaskOptions} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
AllTasks.getLayout = (page) => getDashboardLayout(page);
|
|
|
|
export default AllTasks;
|