-
CSS Flexbox: Push an element to the endUse margin-left: auto to force a flexbox item to the end of a row.
-
A Disabled React componentA reusable Disabled React component to wrap conditional display logic.
-
How to Disable Specific Eslint RulesThe create react app [http://github.com/facebook/create-react-app/] eslint presets come with a few rules that are slightly annoying. One of them is jsx-a11y/href-no-hash, which makes sure you don’t add an tag without a valid http address for the href property. To ignore this, add a .eslintrc.
-
☝️Redux dev tools are a thing and they're incredibleRedux dev tools are some life-changing shit.
-
React CRA + Netlify = 💯❤Why mess with S3 & Cloudfront when netlify is so damn easy (and free)?
-
Elasticsearch full-text queries explained, for humans 🤓A quick overview of the core elastic search query types.
-
🚫😩 An array of react refsApparently you can't store React refs [https://reactjs.org/docs/refs-and-the-dom.html] in an array. For some reason they get wiped out, so if you need to store a collection of refs, you have to do something like this (forgive me lord, for I hath sinned): import React from 'react'