Lifecycle
Launch
import { Detail } from "@raycast/api";
// Returns the main React component for a view command
export default function Command() {
return <Detail markdown="# Hello" />;
}import { showHUD } from "@raycast/api";
// Runs async. code in a no-view command
export default async function Command() {
await showHUD("Hello");
}LaunchProps
Property
Description
Type
Unloading
Last updated

