mirror of
https://github.com/bendtherules/react-fiber-traverse.git
synced 2026-08-18 22:01:49 +00:00
21 lines
325 B
TypeScript
21 lines
325 B
TypeScript
// import * as PropTypes from "prop-types";
|
|
import * as React from "react";
|
|
|
|
class CDepth3Nested1 extends React.Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<CDepth0></CDepth0>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
class CDepth0 extends React.Component {
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default CDepth3Nested1;
|