nitro-react/src/hooks/UseMountEffect.tsx

4 lines
113 B
TypeScript
Raw Normal View History

2021-07-13 06:27:38 +02:00
import { useEffect } from 'react';
export const UseMountEffect = (fun: Function) => useEffect(() => fun(), []);