Files
luminance/src/hooks/window.ts
T
jay 9fec89949b
Test and Build / test-and-build (push) Failing after 1m47s
Started palette editor.
Cleaned up tests and lint errors.
Upgraded npm packages.
2026-03-19 18:54:44 -04:00

5 lines
173 B
TypeScript

export function onResize(callback: () => void): () => void {
window.addEventListener("resize", callback);
return () => window.removeEventListener("resize", callback);
}