Basement Primitives

Building blocks for your React application.

Button

Portal

export default () => <Portal>This will render in a different dom tree</Portal>

Popper

cx

import cx from 'primitives/cx'

  const className = cx('hey there', { giveMe: true, hola: false }, ['hija', 'hophouse'])
  console.log(className) // 'hey there giveMe hija hophouse'

copyToClipboard