synapsecns/sanguine

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

Summary

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

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