forked from GitHubMirrors/silverbullet-icalendar
12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
import { flashNotification } from "@silverbulletmd/plugos-silverbullet-syscall/editor";
|
|
|
|
const loneRangerQuotes = [
|
|
"Hi-Yo! Silver",
|
|
"Hi-Yo! Silver! Away!",
|
|
"Kemo Sabe",
|
|
"Get-um up, Scout!",
|
|
];
|
|
|
|
export async function helloWorld() {
|
|
flashNotification(loneRangerQuotes[Math.floor(Math.random() * loneRangerQuotes.length)]);
|
|
} |