Skip to content

Hey, I'm Sandro

I'm an experienced Frontend Developer based in Switzerland. I love coding, writing and cats 🐈

  • 5 min read

    Reducers are not only useful for global state management. They can also be used for local component state. And compared to plain useReducer() we can reduce boilerplate code by adapting the API of modern reducer libraries like Redux Toolkit (RTK).

  • 9 min read

    In this article we'll build a styling foundation for a React application using vanilla-extract, a CSS-in-JS library. We'll create a global theme, a CSS reset, utility classes, a polymorphic box component and multi-variant components.

  • 6 min read

    Building complex reactive forms in Angular that require a lot of cross-field validation and triggering side effects isn't an easy task. In this article we'll see one possible way of building such a form using the form service approach.

  • 7 min read

    Every React project looks a bit different. There are so many ways to structure frontend projects. In this article we'll discuss three different project structures.