mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
5 lines
172 B
TypeScript
5 lines
172 B
TypeScript
import { useContext } from 'react';
|
|
import { StorageContext } from '../../components/Context/StorageProvider';
|
|
|
|
export const useStorage = () => useContext(StorageContext);
|