import { useSelector } from 'react-redux'; import { StoreState } from 'store'; import { Theme } from 'common/types'; export function useTheme() { const theme = useSelector(({ theme }) => theme); return theme; }