BlueWallet/hooks/useMenuElements.ts

10 lines
203 B
TypeScript
Raw Normal View History

2024-11-07 23:19:46 -04:00
const useMenuElements = () => {
2024-11-08 18:35:32 -04:00
const setReloadTransactionsMenuActionFunction = (_: () => void) => {};
2024-11-07 23:19:46 -04:00
return {
setReloadTransactionsMenuActionFunction,
};
};
2024-11-08 18:35:32 -04:00
export default useMenuElements;