const sleep = (ms: number) =>
new Promise<void>((res) => setTimeout(res, ms));
const cleanupJob = async () => {
console.log("cleanup started");
Starter styles from the CodeGlow community. Open any example, make it yours, and post it — every remix links back here.