João Reis
Rute Figueiredo

7 July 2026

Min Read

React vs Angular: which framework should you choose in 2026?

Ask five developers whether to use React or Angular and you'll get five confident answers and no budget. That's the confusion this article exists to clear up. If you're making a framework decision that touches hiring, budget or a multi-year roadmap, this one is written for you: it compares React and Angular on what they cost to adopt, staff and maintain, not just on features. Let's compare them.

Choose React when speed to market, hiring flexibility and a customer-facing product with rich UI requirements are your priorities. Its shorter learning curve and larger ecosystem cut development time and recruitment risk. Choose Angular for large, complex, long-term applications, especially enterprise systems maintained by big or changing teams, where its built-in structure and compile-time error detection through TypeScript keep long-term maintenance costs down.

Both are mature, production-proven technologies. The deciding factors are project scale, team background, and how long the software must live.

blue arrow to the left
Imaginary Cloud logo

What is Angular?

Angular is a full web framework developed and maintained by Google, first released as AngularJS in 2010. AngularJS became one of the most popular JavaScript frameworks of its era, mainly thanks to two ideas. Two-way data binding, where changes in the interface and in the underlying data automatically stay in sync. And dependency injection: a technique in which a component receives the other pieces of code it depends on, rather than creating them itself.

A quick untangling, because the names trip everyone up. AngularJS and modern Angular are distinct technologies: Google rewrote the framework completely in 2016, and "Angular" now refers to that rewrite. AngularJS reached end-of-life in 2022 (if you're still running angular.js in production, that alone is a migration conversation).

Angular is built with TypeScript, a superset of JavaScript that lets developers declare the type of each piece of data, so many errors are caught before the code ever runs.

Why use Angular?

  • Structure by default: Angular's modular architecture and strong conventions mean two Angular codebases look alike. Precisely what large or rotating teams need.
  • TypeScript: static typing surfaces errors at compile time rather than in production, and makes large codebases navigable for new joiners.
  • Batteries included: routing, forms, HTTP and state handling ship in the box, cutting your dependence on third-party packages and the compatibility work they bring.
  • Cross-platform reach: web, mobile and desktop applications from a single codebase.
  • Predictable releases: Google ships major versions on a published schedule with documented migration paths (Google likes a schedule), which is a genuine planning advantage for long-lived systems.

Business impact: Angular front-loads its cost, a steeper learning curve and more concepts, in exchange for lower structural risk later. It's an insurance policy you pay for up front.

Disadvantages of Angular

  • Performance overhead: a larger baseline footprint and more complex architecture than lighter alternatives, which can feel disproportionate on small applications.
  • Prescriptive approach: less flexibility when integrating with existing codebases or unconventional architectures.
  • Debugging: the framework's layers can make root-cause analysis slower.
  • Migration effort: upgrades between major versions are well documented but not free. Budget for them.

Who uses Angular?

Microsoft Office, Deutsche Bank, Santander, Gmail, Forbes, UpWork, PayPal, Samsung, Delta and Overleaf, among others.

blue arrow to the left
Imaginary Cloud logo

What is React.js?

React (also called React.js) is an open-source JavaScript library released by Facebook in 2013. It popularised component-based architecture in web development: building interfaces from small, self-contained, reusable pieces.

React's rapid adoption overshadowed most frameworks of the time, including AngularJS. In response to the community's enthusiasm for component-based architecture, Google rewrote its own framework in 2016 and released it as Angular 2. Yes, React is partly why modern Angular exists.

Two terms are worth defining before we go further. The DOM (Document Object Model) is the browser's internal representation of the page a user is currently seeing; developers manipulate it to change what appears on screen, but those manipulations are expensive in performance terms. A virtual DOM is a lightweight in-memory copy of the DOM that a framework compares against, so it only updates the parts of the real page that actually changed.

Why use React?

  • Reusability: UI components get reused across an application, so development speed compounds as the product grows.
  • Performance: the virtual DOM updates only what changed, keeping interfaces fast without manual optimisation.
  • The largest ecosystem in front-end: more libraries, more tutorials, more answered questions. Plus more developers who already know it.
  • Proven at scale: Facebook, Instagram, Netflix and Airbnb run on React. Scale is not the question.
  • Customisability: as a library rather than a framework, React integrates with almost any stack and bends to your specific needs.

Business impact: React minimises your cost to start and cost to staff. The trade-off is that architectural quality becomes your team's responsibility, not the framework's.

Disadvantages of React

  • Decisions everywhere: routing, state management and project structure are all choices your team must make, then defend, for the life of the product.
  • Ecosystem churn: a large, fast-moving package ecosystem means periodic compatibility and upgrade work.
  • SEO requires deliberate effort: because React renders with JavaScript, search-engine-critical products usually need server-side rendering (covered below).
  • Boilerplate in state management: as our build confirmed, configuring Redux was the hardest single task in the React project.

Who uses React?

Facebook, Instagram, Netflix, The New York Times, WhatsApp, Khan Academy, Codecademy and Dropbox, among others.

blue arrow to the left
Imaginary Cloud logo

React vs Angular: which one is more popular in 2026?

Why should you care about popularity at all? Because the bigger and more active a community, the faster your team finds answers to unexpected problems. And the easier it is to hire.

  • Developer usage: the Stack Overflow 2025 Developer Survey (retrieved July 2026) reports 44.7% of developers use React vs 18.2% for Angular.
  • Developer sentiment: in the same survey, 52.1% of React users say they admire it, against 44.7% for Angular. The gap is widely put down to React's gentler learning curve.

Stack Overflow 2025 Developer Survey results chart for the most popular web frameworks and technologies among respondents.

  • GitHub community: React's repository holds around 246,000 stars; Angular's roughly 100,000 (both retrieved July 2026).
  • Downloads: npm trends shows React ahead of Angular in package downloads every year since 2015, and the gap keeps widening.

npm download comparison chart from mid-2025 to 2026 showing react significantly outperforming angular.

  • Job market: Hacker News hiring trends show Angular led job postings until late 2015, when Angular was mature and React still new. Then React overtook it and never looked back.

Does popularity make React the better framework? No. It makes React the easier framework to staff, which is a hiring and onboarding advantage rather than a verdict on quality. Both communities are more than large enough that neither framework is a risky bet on longevity.

blue arrow to the left
Imaginary Cloud logo

React vs Angular: the main technical differences

Both technologies use component-based architecture and share plenty of ground. The differences below are the ones that showed up in our build, each with its business consequence stated plainly. First the summary, then the detail.

Angular vs React at a glance

ReactAngular
TypeUI library (your team assembles the rest)Full framework (batteries included)
Backed byMetaGoogle
LanguageJavaScript + JSX (TypeScript optional)TypeScript (mandatory)
Data bindingOne-wayTwo-way
DOMVirtual DOMReal DOM with change detection
MobileReact Native (first-party)Ionic / NativeScript (community)
Learning curveGentler: productive in weeksSteeper: more concepts up front
TestingYour team chooses the toolingConfigured out of the box
SSR / SEOVia Next.jsBuilt into modern Angular
Developer usage (2025)44.7%18.2%
Best forTime-to-market, hiring flexibility, mobileLarge, long-lived, structured enterprise systems

Purpose: framework vs library

Here's the picture worth holding onto. Angular is a furnished flat: the plumbing, wiring and furniture (data binding, project generation, routing, dependency injection, form validation) come installed, and the landlord has opinions about where the sofa goes. React is a bare shell with excellent bones. You fit it out yourself with additional libraries for routing and state management, arranged exactly how your team likes to live.

What we tell clients: React's flexibility means your maintainability depends on the discipline of the team you hire. Angular's structure means the framework carries some of that discipline for you.

Business impact: with React, budget for architectural governance (standards, reviews, senior oversight). With Angular, that governance is partly built in.

Data binding

Angular uses bidirectional (two-way) data binding: when the UI input changes, the model state changes too, and vice versa. React uses unidirectional (one-way) data binding, where a UI change does not directly modify a component's state. That makes data flow more predictable and debugging simpler.

Business impact: one-way binding tends to make defects in complex interfaces cheaper to trace; two-way binding cuts the code needed to keep forms and data in sync.

Language: TypeScript vs JavaScript with JSX

Angular uses TypeScript natively, catching a whole class of errors at compile time. React is typically written in JavaScript ES6+ combined with JSX, a syntax extension that lets developers write HTML-like markup directly inside JavaScript, compiled for the browser by a tool such as Babel. React can also be written in TypeScript, but it isn't the default.

Business impact: mandatory TypeScript is a maintenance asset on long-lived codebases. React teams get the same benefit only if they choose TypeScript, and enforce it.

UI components

Angular ships a wide range of Material Design components (layouts, buttons, pop-ups) for fast, consistent UI configuration out of the box. React teams typically install a community library such as Material UI, which offers an enormous variety of components, free and paid.

Business impact: parity in practice. The real difference is who maintains the dependency: Google, or a third-party community.

Dependency injection

Angular fully supports dependency injection (defined above), allowing different stores to have distinct lifecycles. React favours a global state shared across components, in line with functional programming and data immutability.

Business impact: dependency injection eases testing and module replacement in large systems. It's one reason Angular resonates with teams from Java and .NET backgrounds.

DOM strategy

Angular works with the real DOM, using change detection to update only the components that require alteration. React uses a virtual DOM, changing single elements without touching the whole tree. For a deeper explanation of the DOM, see our Vue.js vs React comparison.

Performance

React historically held the runtime edge. Its virtual DOM trees are lightweight, and one-way binding avoids the per-binding watchers that Angular's two-way binding requires. Angular has closed much of that gap through ahead-of-time (AOT) compilation (translating the application into efficient browser code at build time rather than in the user's browser), tree shaking (automatically removing unused code from the final bundle) and its Ivy rendering engine, Angular's compiler, which produces smaller and faster output than its predecessor.

Business impact: for most business applications, either framework is fast enough that team skill matters more than framework choice. Performance-critical, high-traffic consumer products still tend to favour React's model.

Testing

Angular ships with a testing setup configured out of the box, so every Angular project tests the same way. Historically that meant Karma and Jasmine; the ecosystem is now converging on Jest and Web Test Runner as Karma is retired. React leaves the choice to your team: Jest or Vitest with React Testing Library are the common defaults, with Playwright or Cypress for end-to-end tests in both ecosystems.

Business impact: Angular standardises quality tooling by default. React teams must standardise it themselves, which is one more governance item on the React side of the ledger.

Build tooling and bundle size

Modern Angular's CLI builds on esbuild and Vite, with lazy loading and tree shaking managed by the framework. Its baseline bundle remains larger than React's core.

React's core library is small, but real applications grow with each dependency added. Your team chooses, and maintains, the build setup: Vite for single-page apps, or a full-stack framework like Next.js.

Business impact: Angular's heavier baseline is rarely decisive for enterprise apps; unmanaged dependency growth in React projects can be. Both are controllable. One by the framework, one by your team.

Server-side rendering and SEO

Because both frameworks render with JavaScript, products that depend on search visibility (e-commerce, marketplaces, content platforms) usually need server-side rendering (SSR), where pages are generated on the server so search engines and users receive complete HTML immediately.

In the React ecosystem, Next.js is the dominant SSR framework and, more often than not, the default way teams use React nowadays. Angular provides SSR natively: the capability formerly packaged as Angular Universal, now integrated with hydration support in modern versions.

Business impact: if organic search drives your revenue, plan the SSR layer at the start. It shapes hosting, architecture and hiring on either framework.

What's new: Angular Signals and React Server Components

Both frameworks have reworked their rendering models since our original build, and the direction of travel matters if you're committing now. Angular Signals give Angular fine-grained reactivity, updating exactly the values that changed instead of re-checking whole component trees. That narrows React's historical performance edge and simplifies Angular's mental model. React Server Components, delivered mainly through Next.js, move part of the rendering to the server, shrinking the JavaScript shipped to the browser and improving load times for content-heavy products.

Business impact: both roadmaps are healthy and, amusingly, converging on the same problems. Neither framework is a dead end, but both now assume more architectural knowledge from your team than they did five years ago.

blue arrow to the left
Imaginary Cloud logo

React vs Angular for mobile development

Both frameworks support cross-platform mobile development with strong code reuse between web and mobile, at runtime performance close to native applications. The difference is official backing. Angular has no first-party mobile framework, with Ionic and NativeScript as the most popular community options, while React has React Native, officially supported by Meta and the most widely used of the three.

Business impact: if a mobile app is on your roadmap, React Native is the strongest single argument for choosing React. One talent pool, one component mindset, across web and mobile.

blue arrow to the left
Imaginary Cloud logo

How we tested: building the same app in both frameworks

How do we know any of this, rather than just believe it? We used the Same-App Test, the method we apply at Imaginary Cloud when two technologies both claim the crown: build the same production-spec application in each candidate, with the same developer, the same API and the same requirements, then compare what it actually cost to get there. But this time, React vs Angular.

The application itself came from a real (if modest) problem. At Imaginary Cloud's Lisbon office, we needed a way to decide which games to buy for the shared PlayStation 4 (opinions were divided; the backlog of suggestions was not getting shorter). The solution was a small website where anyone could suggest games and upvote their favourites.

Because the project was small and self-contained, it was an ideal candidate: the same front-end built twice, once in Angular and once in React, with the same developer, the same RESTful API exchanging data in JSON, and the same requirements:

  • Authentication methods
  • CRUD operations over models
  • Listing and filtering data

The developer's prior experience was vanilla JavaScript, HTML and CSS. Both frameworks were learned from scratch, which made the exercise a fair test of each framework's ramp-up time (a cost we'll put a number on later in this article).

blue arrow to the left
Imaginary Cloud logo

React vs Angular for beginners: which one to learn?

Is learning a framework from scratch, with no prior framework experience, a realistic undertaking? Yes, comfortably. Component-based architecture takes some adjustment, but once the concept clicks, it proves simpler than expected. In this project, React was learned first, then Angular.

Is Angular easy to learn?

Angular proved trickier to work with than React. It has more concepts and syntax to learn, although its official tutorial accelerated the ramp-up considerably once the application build started. Angular's documentation is much longer, because the framework tries to solve more problems than React does, and Angular code is more verbose.

The built-in libraries carried real weight in practice. Angular Material provided complex, ready-made components; Angular Router kept the UI in sync with the URL. And because Angular components ship with their own CSS files, no additional styling library was needed.

One genuine obstacle surfaced. It's exactly the kind of finding the Same-App Test exists to catch:

IC field note: Angular's HTTP module failed to set the CSRF token in request headers, blocking authenticated requests, and the module's documentation offered no working solution (a common complaint with this library). The pragmatic fix was to swap in Axios, already familiar from the React build, which took minutes. The lesson: even "batteries included" frameworks sometimes need a battery replaced, so keep your architecture flexible enough to allow it.

For state management, NgRx, very similar to Redux, made error detection easier and gave more control over the application.

IC field note: NgRx felt easier than Redux had. But React was learned first, and Redux had already taught the store, action and reducer mental model. Sequencing matters: whichever framework your team learns second will feel simpler than it is. Discount first impressions accordingly when your engineers report back from a spike.

On testing, the two builds differed in posture rather than capability. The Angular CLI generated a test file alongside every component, making tests opt-out; in the React build, testing was one more stack decision to make and wire up before the first test could run.

The Angular build used: Axios (REST integration), Angular Router (URL-driven UI), NgRx (state management) and Angular Material (UI components).

Banner graphic for Imaginary Cloud services. Text reads: "Build scalable products with Web & Mobile Development. We help you shape digital products from scratch or improve your existing ones." Includes a "LEARN MORE" button and isometric digital device illustration.

Is React easy to learn?

React's first hurdle is its JSX syntax. It turned out to be a minor one. Having all of a component's code in the same file is a coherent, learnable concept.

REST requests were handled with Axios, and React Router, the standard choice, handled URL-driven rendering without trouble. Because React only handles the view layer, reactivity required Flux, the unidirectional data-flow architecture Facebook designed for exactly this problem, implemented via Redux. Configuring Redux was the single most difficult part of the React build.

For the interface, Material UI covered the visual components, and styled-components handled styling with a syntax that keeps components readable.

The React build used: Axios (REST integration), React Router (URL-driven UI), Redux (state management), Material UI (UI components) and styled-components (CSS).

Business impact: for a team learning from scratch, React reached productivity faster. Days, not weeks. That difference compounds across every new hire you onboard.

blue arrow to the left
Imaginary Cloud logo

React vs Angular: developer experience

Angular offers thorough documentation and many built-in features, so complex applications can be built without hunting for third-party packages. The trade-off is a steeper learning curve and longer ramp-up. Developers coming from statically typed languages like C++, C# or Java tend to feel at home, because TypeScript resembles those languages.

React was the more productive and pleasant framework to develop in during this project: simpler syntax, shorter documentation of high quality, and abundant examples, at the cost of assembling third-party packages yourself. Developer sentiment at large points the same way. 52.1% of React users admire it vs 44.7% for Angular (Stack Overflow 2025, retrieved July 2026).

Business impact: developer experience is retention. Engineers who like their stack stay longer, and with 90% employee retention at Imaginary Cloud against an industry average near 43%, we've seen how much tooling satisfaction contributes to keeping a senior team together.

blue arrow to the left
Imaginary Cloud logo

What this means for your project or team

Truth be told, the React vs Angular decision is not really a technical one. It's a question of total cost of ownership. Think of it the way you'd buy a car: the learning curve is the sticker price, and everything after (fuel, servicing, the mechanic who knows the model) is the running cost. At Imaginary Cloud we break that into a Four-Cost Model:

  1. Cost to start. Ramp-up time and time-to-market. React's gentler learning curve wins here: in our experience, a developer new to frameworks typically reaches productivity in two to four weeks with React, and roughly double that with Angular.
  2. Cost to staff. Hiring speed and replacement risk. React's talent pool is more than twice Angular's, which in typical European markets shortens recruitment cycles by weeks and widens the salary band you can hire within.
  3. Cost to scale. Keeping a growing codebase and team consistent. Angular's enforced structure wins as headcount grows.
  4. Cost to sustain. Maintenance over a five-to-ten-year horizon. Angular's mandatory TypeScript and prescriptive architecture limit the drift that inflates maintenance budgets. React's maintainability depends on the discipline of the team you hire.

So which one is cheaper? Wrong question. React lowers your cost of starting; Angular lowers your cost of staying consistent at scale. The right choice depends on which of those costs dominates your roadmap.

Infographic of The Four-Cost Model outlining 5 steps to compare and choose between React and Angular frameworks.
The Four-Cost Model we use at Imaginary Cloud to settle the React vs Angular decision.

React vs Angular: cost of ownership over time

This is the section most comparisons skip. It's also the one that decides budgets. Let's apply the Four-Cost Model.

React vs Angular hiring cost and risk

React's talent pool is more than twice the size of Angular's, which shortens recruitment cycles (typically by weeks in competitive markets) and lowers the risk of a key-person dependency. Angular hiring draws well from developers with Java, C# or C++ backgrounds, plentiful in enterprise environments. Plus, Angular's enforced structure makes an unfamiliar codebase navigable for new joiners, which partially offsets the smaller pool.

Angular vs React maintenance costs over time

Angular front-loads its costs (longer ramp-up, more boilerplate) but tends to control them over time: enforced structure and static typing limit architectural drift, and Google's predictable release cycle makes upgrades a schedulable line item rather than a surprise. React starts cheaper, but its long-term cost tracks your team's discipline and the health of a constellation of third-party libraries covering routing, state, UI and build tooling.

An undisciplined React codebase five years in is one of the most expensive artefacts in software. A well-governed one is a joy.

React vs Angular for enterprise applications

For a large internal platform maintained by 10+ engineers over 5+ years, Angular's structural guarantees usually produce the lower total cost. For a customer-facing product where time-to-market and iteration speed drive revenue, React's lower cost to start and staff usually wins, provided architectural governance is funded from day one. This is the trade-off we help clients weigh in our web development engagements.

Angular vs React for a small team

For a small team or startup, the calculus simplifies. React's faster ramp-up, larger hiring pool and React Native path to mobile make it the default choice. Angular earns a place on a small team mainly when the product is expected to grow into a large regulated or enterprise system, or when the founding engineers come from Java or .NET backgrounds and will move faster with TypeScript's structure from day one.

React vs Angular: which one to choose?

Based on the research and the Same-App Test, the evidence supports the following:

  • Angular detects errors at compile time, because TypeScript is statically typed, rather than at runtime as with plain JavaScript.
  • Developers from statically typed languages tend to prefer Angular, as TypeScript allows explicit types in the code.
  • Angular keeps data in sync at all levels through two-way data binding, in contrast with React's one-way binding.
  • React has an easier learning curve, so ramp-up time is much shorter.
  • React offers the stronger cross-platform mobile solution through React Native.
  • React lets the team decide how code should be organised: flexibility that rewards disciplined teams and punishes undisciplined ones.

For this specific project, React was the better option. Its simplicity shortened the learning curve and smoothed the transition to component-based architecture. For complex, longer-term projects, Angular fits better: explicit types and compile-time error detection reduce maintenance risk as codebases and teams grow.

React vs Angular: the verdict

React and Angular solve the same problems with different cost structures. React has the easier learning curve, the larger talent pool and the quicker path to production. Angular has more built-in functionality and stronger guardrails for large, long-lived systems.

So, furnished flat or bare shell? Run the Four-Cost Model against your own roadmap. If cost to start and cost to staff dominate, choose React; if cost to scale and cost to sustain dominate, choose Angular. That's the whole decision. Everything else is implementation detail.

blue arrow to the left
Imaginary Cloud logo

FAQ

What is the difference between React and Angular?

React is a UI library that gives teams freedom (and responsibility) to choose their own routing, state management and structure; Angular is a complete framework that includes those pieces and enforces how they fit together. React uses one-way data binding and a virtual DOM; Angular uses two-way binding, the real DOM with change detection, and mandatory TypeScript.

Which is better in 2026, React or Angular?

Neither is better in absolute terms. In 2026, React leads on adoption (44.7% vs 18.2% of developers), hiring and time-to-market; Angular leads on built-in structure, which pays off in large, long-lived enterprise systems. Match the framework to your project's scale and lifespan, not to popularity alone.

Which is better for performance, React or Angular?

For most business applications the difference is negligible; both are fast when competently used. React's virtual DOM and one-way binding give it a historical edge in highly dynamic, high-traffic interfaces, while Angular has narrowed the gap with ahead-of-time compilation, tree shaking and the Ivy engine. Team skill affects real-world performance more than the framework does.

Is React or Angular better for beginners?

React. In our Same-App Test, a developer new to both frameworks reached productivity noticeably faster in React; JSX was a minor hurdle, and Redux configuration was the only genuinely hard part. Angular's larger concept surface (TypeScript, dependency injection, modules, decorators) makes its ramp-up longer, though its official tutorial is excellent.

What is the difference between React and Angular for a large team?

Structure. Angular enforces one way of doing things, so fifty engineers produce consistent code and new joiners navigate the codebase quickly. React lets each team define its own architecture, which works well with strong governance and becomes expensive without it. For large or rotating teams, Angular's constraints are usually an asset.

What are the long-term maintenance costs of Angular vs React?

Angular front-loads cost and controls it over time through enforced structure, static typing and a predictable release cycle. React starts cheaper, but its maintenance cost tracks your team's discipline and the health of its third-party dependencies. Over a five-to-ten-year horizon, Angular is the safer default for internal platforms; React is the better investment for products that must iterate fast.

Should I use React or Angular for my startup?

React, more often than not. A startup's scarcest resources are time and hiring bandwidth, and React wins on both: faster ramp-up, a talent pool more than twice Angular's size, and React Native if mobile is on the roadmap. Pick Angular only if you're building for a regulated or enterprise market from day one, or your founding engineers already think in TypeScript and structured frameworks.

Is Angular dead, or still worth learning in 2026?

Is Angular dead? No, of course not. Its GitHub repository passed 100,000 stars, Google ships major versions on a predictable schedule, and features like Signals show an actively evolving roadmap. What died was AngularJS, the original 2010 framework, which reached end-of-life in 2022; the two are often conflated. Angular remains a strong career and technology bet, particularly in enterprise environments where it's deeply embedded.

Should I switch from React to Angular (or vice versa)?

Only if the project's needs have outgrown the current framework: an enterprise system that needs stricter structure, say, or a product where hiring speed or React Native mobile reach has become the bottleneck. In most cases the cost of migration outweighs the benefit. The framework decision matters most at the start.

Talk to our engineers about your project requirements

Choosing between React and Angular is ultimately a decision about your team, your timeline and how long your software needs to live. It's easier to get right with people who have shipped production systems in both. Our engineers can run the Four-Cost Model against your roadmap, help you choose the framework that fits your hiring reality and maintenance horizon, and then build it with you.

Start the conversation. Tell us about your project.

We are Hiring!
João Reis
João Reis

Software developer with interest in technologies that simplify our lives, like Python and JavaScript. Also a gym enthusiast in spare time.

Read more posts by this author
Rute Figueiredo
Rute Figueiredo

Software developer with a big curiosity about technology and how it impacts our life. Love for sports, music, and learning!

Read more posts by this author

People who read this post, also found these interesting:

Dropdown caret icon