(props)
| 5 | |
| 6 | export default class CreateProject extends React.Component { |
| 7 | constructor(props) { |
| 8 | super(props); |
| 9 | this.state = {scriptname:'', scriptpath:'', template:"empty_template.py", template_desc:"An empty python script", icon:"fa fa-file-code-o", templatename:"Empty script"} |
| 10 | window.service.createScriptUI = this; |
| 11 | } |
| 12 | |
| 13 | componentDidCatch(error, info) { |
| 14 | // Display fallback UI |
nothing calls this directly
no outgoing calls
no test coverage detected