Files
anbraten 99a9f908f1
tinyedge/deploy Deployed by TinyEdge
move tabs into own pages
2026-08-07 15:49:43 +02:00

9 lines
177 B
TypeScript

export function useConfirm() {
function confirm(message: string) {
if (!import.meta.client) return false;
return window.confirm(message);
}
return { confirm };
}