()
| 52 | } |
| 53 | |
| 54 | render() { |
| 55 | this.nodecount = -1; |
| 56 | return ( |
| 57 | <div id="filesystem"> |
| 58 | {/* @ts-expect-error ts-migrate(2339) FIXME: Property 'rootnode' does not exist on type 'Readon... Remove this comment to see the full error message */} |
| 59 | <ul style={{ color: "#ccc" }}>{this.get_node_jsx(this.props.rootnode)}</ul> |
| 60 | </div> |
| 61 | ); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | export default FileSystem; |
nothing calls this directly
no test coverage detected