mirror of
https://github.com/bendtherules/react-fiber-traverse.git
synced 2026-08-18 13:52:36 +00:00
15 lines
250 B
TypeScript
15 lines
250 B
TypeScript
// import * as PropTypes from "prop-types";
|
|
import * as React from "react";
|
|
|
|
class CDepth2 extends React.Component {
|
|
render() {
|
|
return <div></div>;
|
|
}
|
|
}
|
|
|
|
// C.propTypes = {
|
|
// text: PropTypes.string.isRequired
|
|
// };
|
|
|
|
export default CDepth2;
|