"

Building dynamic forms with Formik with React and TypeScript

6 years ago

Building forms has always been one of React's weaknesses. The unidirectional data flow paradigm in React doesn't mesh with the ephemeral-ness of HTML forms. We'll use Formik to alleviate these issues....


Creating Declarative React Components with CSS-in-JS and TypeScript

6 years ago

Why? * Creating components in React can be difficult to do * Naming things is hard * Monolithic components aren't scalable We'll talk about how to alleviate those issues in this post. Component Creation Creating React components is pretty simple to do. import * as React from "react"...