UNPKG

react-odyssey

Version:

React components for Odyssey design system

4 lines (2 loc) 152 B
export const isMobilish = () => window.matchMedia('(max-width: 800px)').matches; export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>