mirror of
https://github.com/bendtherules/react-fiber-traverse.git
synced 2026-08-18 13:52:36 +00:00
11 lines
178 B
TypeScript
11 lines
178 B
TypeScript
// import * as PropTypes from "prop-types";
|
|
import * as React from "react";
|
|
|
|
class CDepth1 extends React.Component {
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default CDepth1;
|