I saw an example code like this:
import React from 'react'
import MyComp from 'my-comp'
const MySubComp = MyComp.MySubComp
class Page extends React.Component {
render() {
return (
<MyComp>
<MySubComp/>
</MyComp>
)
}
}
How to implement the syntax MyComp.MySubComp?
Does he have terminology?
source
share