UNPKG

@workday/canvas-kit-react

Version:

The parent module that contains all Workday Canvas Kit React components

20 lines (19 loc) 672 B
import React from 'react'; /** * Alias to `useEffect` with the intention to only run on mount/unmount. * Avoids the React lint errors and encodes intent. */ export const useMount = (callback) => { // we only want this to be called once // eslint-disable-next-line react-hooks/exhaustive-deps React.useEffect(callback, []); }; /** * Alias to `useLayoutEffect` with the intention to only run on mount/unmount * Avoids the React lint errors and encodes intent. */ export const useMountLayout = (callback) => { // we only want this to be called once // eslint-disable-next-line react-hooks/exhaustive-deps React.useLayoutEffect(callback, []); };