Skip to content

Instantly share code, notes, and snippets.

View St2r's full-sized avatar
🐟
touching fish

St2r

🐟
touching fish
View GitHub Profile
@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) {