mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
4 lines
176 B
TypeScript
4 lines
176 B
TypeScript
import { useContext } from 'react';
|
|
import { SettingsContext } from '../../components/Context/SettingsProvider';
|
|
|
|
export const useSettings = () => useContext(SettingsContext);
|