What’s the difference between a “smart” component and a “dumb” component?

Technology CommunityCategory: ReactWhat’s the difference between a “smart” component and a “dumb” component?
VietMX Staff asked 3 years ago
  • Smart components manage their state or in a Redux environment are connected to the Redux store.
  • Dumb components are driven completely by their props passed in from their parent and maintain no state of their own.