Создание государства в классных компонентах reactjs Question

class Car extends React.Component{
 constructor(props){
   super(props);
   this.state = {
     brand: "BMW",
     color: "black"
   }
 }
}
Grieving Gull