MCPcopy Create free account
hub / github.com/coder/coder / TaskPromptEmpty

Function TaskPromptEmpty

site/src/modules/tasks/TaskPrompt/TaskPrompt.tsx:119–135  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

117};
118
119const TaskPromptEmpty: FC = () => {
120 return (
121 <div className="rounded-lg border border-solid border-border w-full min-h-80 p-4 flex items-center justify-center">
122 <div className="flex flex-col items-center">
123 <h3 className="m-0 font-medium text-content-primary text-base">
124 No Task templates found
125 </h3>
126 <span className="text-content-secondary text-sm">
127 <Link href={docs("/ai-coder/tasks")} target="_blank" rel="noreferrer">
128 Learn about Tasks
129 </Link>{" "}
130 to get started.
131 </span>
132 </div>
133 </div>
134 );
135};
136
137type CreateTaskMutationFnProps = {
138 prompt: string;

Callers

nothing calls this directly

Calls 1

docsFunction · 0.90

Tested by

no test coverage detected