Add testcase - travserse-basic-depth=5

This commit is contained in:
2019-07-20 19:28:38 +05:30
parent 771ff3e21e
commit 70901db7c4
2 changed files with 43 additions and 13 deletions
+16
View File
@@ -0,0 +1,16 @@
// import * as PropTypes from "prop-types";
import * as React from "react";
class CDepth5 extends React.Component {
render() {
return (
<div>
<span></span>
<button></button>
<div></div>
</div>
);
}
}
export default CDepth5;