9fec89949b
Test and Build / test-and-build (push) Failing after 1m47s
Cleaned up tests and lint errors. Upgraded npm packages.
5 lines
173 B
TypeScript
5 lines
173 B
TypeScript
export function onResize(callback: () => void): () => void {
|
|
window.addEventListener("resize", callback);
|
|
return () => window.removeEventListener("resize", callback);
|
|
}
|