# react/no-this-in-sfc
📝 Disallow `this` from being used in stateless functional components.
In React, there are two styles of component. One is a class component: `class Foo extends React.Component {...}`, which accesses its props, context, and state as properties of `this`: `this.props.foo`, etc. The other are stateless functional components (SFCs): `function Foo(props, context) {...}`. As you can see, there's no `state` (hence the name - hooks do not change this), and the props and context are provided as its two functional arguments. In an SFC, state is usually best implements with a [React hook](https://reactjs.org/docs/hooks-overview.html) such as `React.useState()`.
Attempting to access properties on `this` can sometimes be valid, but it's very commonly an error caused by unfamiliarity with the differences between the two styles of components, or a missed reference when converting a class component to an SFC.
## Rule Details
Examples of **incorrect** code for this rule:
```jsx
function Foo(props) {
return (
{this.props.bar}
);
}
```
```jsx
function Foo(props) {
const { bar } = this.props;
return (
{bar}
);
}
```
```jsx
function Foo(props, context) {
return (
{this.context.foo ? this.props.bar : ''}
);
}
```
```jsx
function Foo(props, context) {
const { foo } = this.context;
const { bar } = this.props;
return (
{foo ? bar : ''}
);
}
```
```jsx
function Foo(props) {
if (this.state.loading) {
return ;
}
return (
{this.props.bar}
);
}
```
```jsx
function Foo(props) {
const { loading } = this.state;
const { bar } = this.props;
if (loading) {
return ;
}
return (
{bar}
);
}
```
Examples of **correct** code for this rule:
```jsx
function Foo(props) {
return (
{props.bar}
);
}
```
```jsx
function Foo(props) {
const { bar } = props;
return (
{bar}
);
}
```
```jsx
function Foo({ bar }) {
return (
{bar}
);
}
```
```jsx
function Foo(props, context) {
return (
{context.foo ? props.bar : ''}
);
}
```
```jsx
function Foo(props, context) {
const { foo } = context;
const { bar } = props;
return (
{foo ? bar : ''}
);
}
```
```jsx
function Foo({ bar }, { foo }) {
return (
{foo ? bar : ''}
);
}
```