/** * Hook that runs a function on component mount * * @param fn - Function to run on mount * * @example * ```tsx * const Component = () => { * useMount(() => { * console.log('Component mounted'); * }); * return