mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-13 03:27:27 +00:00
6 lines
196 B
TypeScript
6 lines
196 B
TypeScript
|
import { AppState } from 'features/reducers';
|
||
|
|
||
|
const getEns = (state: AppState) => state.ens;
|
||
|
|
||
|
export const getCurrentDomainName = (state: AppState) => getEns(state).domainSelector.currentDomain;
|