Initial commit
This commit is contained in:
17
src/index.tsx
Normal file
17
src/index.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user