Initial commit

This commit is contained in:
2024-01-19 16:49:00 +01:00
commit 6775863ed3
10 changed files with 100 additions and 0 deletions

17
src/index.tsx Normal file
View File

@@ -0,0 +1,17 @@
import { ActionPanel, Detail, List, Action } from "@raycast/api";
export default function Command() {
return (
<List>
<List.Item
icon="list-icon.png"
title="Greeting"
actions={
<ActionPanel>
<Action.Push title="Show Details" target={<Detail markdown="# Hey! 👋" />} />
</ActionPanel>
}
/>
</List>
);
}