Building blocks for your React application.
export default () => <Portal>This will render in a different dom tree</Portal>
import cx from 'primitives/cx'
const className = cx('hey there', { giveMe: true, hola: false }, ['hija', 'hophouse'])
console.log(className) // 'hey there giveMe hija hophouse'