synapsecns/sanguine

View on GitHub
packages/synapse-interface/slices/application/hooks.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { RootState } from '@/store/store'
import { useAppSelector } from '@/store/hooks'

export const useApplicationState = (): RootState['application'] => {
  return useAppSelector((state) => state.application)
}