UNPKG

@foreverrbum/ethsign

Version:

This package will allow you to electronically sign documents within your application

13 lines (12 loc) 219 B
/** * @pzhu */ import React, { useEffect } from 'react'; /** * * @param {function} callback * @description for component mount hook */ export const useMount = (callback) =>{ useEffect(()=> callback(), []); }