DEV Community

Cover image for Class Components vs. Stateless Functional Components
Tim Smith
Tim Smith

Posted on

Class Components vs. Stateless Functional Components

When I first began to learn React, I didn't even realize there was a difference between class components and stateless functional components. I thought they were just different ways to write the same thing.

In some ways, they are. In many ways, they aren't the same. In this article, I'll explain the differences between the two as well as when and why to use the different types.

What is a "Class Component"?

A class component is a component that takes advantage of ES6 classes to manage various pieces of the component. State is something we use a lot in React and I'll write more about it in a later post. For now, just know that it's how we manage data within our component. In addition to state, we can create custom functions to use in our component and take advantage of lifecycle methods.

These things can be useful when we are storing or maniplating data within our component. Cases such as these will be our primary use cases for class components. I have provided an example of a class component which will render "Hello World" below using state:

class HelloWorld extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      greeting: "Hello World"
    }
  }
  render() {
    return (
      <div>
        <p>{ this.state.greeting }</p>
      </div>
    )
  }
}
Enter fullscreen mode Exit fullscreen mode

What is a "Stateless Functional Component"?

I know, I know. "Stateless Functional Component" sounds like something big and scary, but I promise: it's not. A stateless functional component is just a function that returns JSX. It's very simple but incredibly useful.

There are two ways to create a stateless functional component. Both are similar and do the same thing, it's just a matter of conciseness. I will be using ES6 arrow functions to create the components. If you haven't used them, I highly recommend you check ES6 out.

The first way: Put it in a variable

If we are putting all of our components in a single file, then this should be how we create stateless functional components. The ability choose how succinctly we want to create our functional components comes into play when we have a different file for each component. The code below illustrates how we can create a functional component within a variable and export it for use in another area of our app.

const HelloWorld = (props) => (
  <div>
    <p>{ props.greeting }</p>
  </div>
);
export default HelloWorld;

===

<HelloWorld greeting="Hello World!" />
Enter fullscreen mode Exit fullscreen mode

The second way: export the function

When we have a stateless functional component in a file by itself, we don't need to name the component. I know, this saves us, like, 10 characters but hey I'll take what I can get. We can simply create the function and export it like the code below.

export default (props) => (
  <div>
    <p>{ props.greeting }</p>
  </div>
);

===

<HelloWorld greeting="Hello World!" />
Enter fullscreen mode Exit fullscreen mode

As you can see, these two functional components look almost identical and they do the same thing. It's really just a matter of personal preference.

A Quick Note:
With ES6 arrow functions, we can use curly braces and put a return inside of those. To keep things concise, we
can also write the function on one line. If no curly braces are placed after arrow, the function will
automatically return whatever is behind the arrow. If the JSX we are returning takes more than one line, we can
wrap our code in parenthesis like the code above.

Which one should I use?

Typically I see that "best practice" is to use stateless functional components whenever possible to reduce code bloat. On Syntax.fm they discussed just using class components all the time because they find that they change a lot of their components from functional to class and don't want to keep converting. Unless you're building an app that is going to be HUGE, I don't see this really causing any problems in terms of performance, so that's completely up to you.



I would love to hear your thoughts about when to use each of these components. How often do you use stateless function components vs class components?

Top comments (9)

Collapse
 
mahlongumbs profile image
Mahlon Gumbs • Edited

In the context of React “Stateless Functional Component (SFC)” is actually the correct term. There is a documented difference between properties and state. While all components in React may take input, that input is always referred to as properties. State is specifically data that a component manages internally. SFCs are thus named due to their inability to possess/manage state.

Technically, one could return a closure and manage state in a SFC, but that would be unusual.

Collapse
 
iam_timsmith profile image
Tim Smith • Edited

Touché. Typically, the nomenclature I see around this is “stateless functional components” so I figured i’d stick with it.

 
ancientswordrage profile image
AncientSwordRage

Isomorphic just means 'same shape's so it should be the same shape code on both server and client.

 
ancientswordrage profile image
AncientSwordRage

Hey, that's great — not doubting you. Portable tends to be used for software that doesn't need to be recompiled for different machines.

No words going to be perfect though.

Collapse
 
kennedybaird profile image
Kennedy Baird

What do you mean by side effect free?