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