Initial commit (history reset)
This commit is contained in:
commit
173a4fc272
47 changed files with 7016 additions and 0 deletions
18
src/app/commands/whoami.tsx
Normal file
18
src/app/commands/whoami.tsx
Normal file
|
@ -0,0 +1,18 @@
|
|||
import { Command } from "../../types/command";
|
||||
|
||||
const whoamiCommand: Command = {
|
||||
metadata: {
|
||||
name: "whoami",
|
||||
description: "Show current user",
|
||||
icon: "👤",
|
||||
},
|
||||
execute: () => {
|
||||
return [
|
||||
<div key="whoami" className="text-gray-400">
|
||||
ronnie
|
||||
</div>
|
||||
];
|
||||
},
|
||||
};
|
||||
|
||||
export default whoamiCommand;
|
Loading…
Add table
Add a link
Reference in a new issue