mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 05:07:36 -05:00
12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
import * as React from "react";
|
|
|
|
export function useIsMounted() {
|
|
const [isMounted, setIsMounted] = React.useState(false);
|
|
|
|
React.useEffect(() => {
|
|
setIsMounted(true);
|
|
}, []);
|
|
|
|
return isMounted;
|
|
}
|