Multiple components within a file

Viewed 42735

Says I have component A

like

export default class ComponentA extends components {
   render(){
      return() //use componentB here?
   }
}

class ComponentB extends components {

}

how can I create another component and use it within ComponentA?

3 Answers
Related