Hi everyone,
Would it be possible to extend React component from BAP client?
For example: A, B and C are React components from BAP client, if if would like to extend component C:
B {
render() {
return <C/>;
}
}
A {
render() {
return <B/>;
}
}
Then I would not expect to do something likes:
MyC extends C {
render() {
return "Xin chao!"
}
}
MyB extends B {
render() {
return <MyC/>;
}
}
MyA extends A {
render() {
return <MyB/>;
}
}