import { useContext } from 'react'; import { BluetoothContext } from './context'; export const useBluetoothContext = () => { return useContext(BluetoothContext); };