@devgrace/utilscommonnoopOn this pagenoop A function that does nothing and returns undefined. Interface const noop: () => void Usage import { noop } from '@devgrace/utils';const handleClick = (callback = noop) => { callback();};