import { ActionPanel, Detail, useNavigation } from "@raycast/api";
const { push } = useNavigation();
<ActionPanel.Item title="Push" onAction={() => push(<Pong />)} />
const { pop } = useNavigation();
<ActionPanel.Item title="Pop" onAction={pop} />
export default function Command() {