by Brandon Humboldt | Sep 26, 2024 | Frontend, React
Introduction So you’ve got a React Native application and things are going well: you write code and when you’re ready to release to your customers, you create your Google Play and App Store builds, fill in all the information, submit your builds and now you wait for...
by Myles Morrone | Mar 15, 2024 | Angular, JavaScript, React, Vue
Angular: The Full-Featured Framework As the landscape of web development continues to evolve, choosing the right framework for building modern applications has become increasingly crucial. Among the numerous options available, Angular, React, and Vue stand out as the...
by Briebug Team | Aug 12, 2022 | Frontend, React
A higher-order component is a technique that is available to us because of React’s compositional nature. Specifically, a higher-order component is a function that takes a component as a parameter and returns a new component. const EnhancedComponent =...
by Briebug Team | Mar 3, 2022 | Frontend, React
After reading this post you will know all the ins and outs of React Fragments, how to use them and why they are useful. I will also give you some use case examples along with code snippets. React fragments allow you to return multiple elements within a component. You...
by Hudson Baker | Mar 2, 2022 | Frontend, React
Conditional rendering is showing content dynamically based on values that can change over time. This can be done inline in the template using interpolation with conditionals, or by returning a component or JSX from a function. Using these methods dynamic content can...
by Briebug Team | Oct 25, 2021 | Frontend, React, Router, Typescript