mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-30 16:40:05 +08:00
24f4c08796
Remove blank line Lint add blank line Link pre-commit
11 lines
404 B
TypeScript
11 lines
404 B
TypeScript
import { getDashboardLayout } from "src/components/Layout";
|
|
import { TaskPage } from "src/components/TaskPage/TaskPage";
|
|
import { TaskType } from "src/types/Task";
|
|
export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props";
|
|
|
|
const PrompterReply = () => <TaskPage type={TaskType.prompter_reply} />;
|
|
|
|
PrompterReply.getLayout = getDashboardLayout;
|
|
|
|
export default PrompterReply;
|