Skip to content

Instantly share code, notes, and snippets.

@St2r
St2r / event_after_hydrate.tsx
Last active November 8, 2021 15:22
make DOM event handled after React hydrate
const handleLoad = (
e: SyntheticEvent<HTMLImageElement>
) => {
console.log('onload');
};
return (
<img
ref={(input: HTMLImageElement | null) => {
if (input) {