Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

11 wiersze
144 B

  1. interface IsEmpty {
  2. (v: any): boolean
  3. }
  4. const isEmpty: IsEmpty = v => (
  5. typeof v === 'undefined'
  6. || v === null
  7. )
  8. export default isEmpty