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