-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintcache
1 lines (1 loc) · 3.28 KB
/
.eslintcache
1
[{"D:\\REACTJS-LEARNING\\React-jsx\\my-react-app\\src\\index.js":"1","D:\\REACTJS-LEARNING\\React-jsx\\my-react-app\\src\\components\\Hello.jsx":"2","D:\\REACTJS-LEARNING\\React-jsx\\my-react-app\\src\\reportWebVitals.js":"3","D:\\REACTJS-LEARNING\\React-jsx\\my-react-app\\src\\App.js":"4"},{"size":500,"mtime":1606396286253,"results":"5","hashOfConfig":"6"},{"size":1547,"mtime":1618404011612,"results":"7","hashOfConfig":"6"},{"size":387,"mtime":1616055248310,"results":"8","hashOfConfig":"6"},{"size":595,"mtime":1606459069607,"results":"9","hashOfConfig":"6"},{"filePath":"10","messages":"11","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"ozoc19",{"filePath":"12","messages":"13","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"14"},{"filePath":"15","messages":"16","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"17","messages":"18","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"D:\\REACTJS-LEARNING\\React-jsx\\my-react-app\\src\\index.js",[],"D:\\REACTJS-LEARNING\\React-jsx\\my-react-app\\src\\components\\Hello.jsx",["19"],"import React, { Component } from 'react';\r\nimport Button from '@material-ui/core/Button';\r\nclass Search extends React.Component {\r\n\r\n constructor() {\r\n super()\r\n\r\n this.state = {\r\n\r\n firstName: '',\r\n lastName: '',\r\n fName_Error: '',\r\n lName_Error: ''\r\n }\r\n }\r\n\r\n handleFirstName = event => {\r\n this.setState({\r\n firstName: event.target.value\r\n })\r\n }\r\n\r\n handleLastName = event => {\r\n this.setState({\r\n lastName: event.target.value\r\n })\r\n }\r\n \r\n render() {\r\n return (\r\n <form onSubmit={this.handleSubmit}>\r\n <h2>Login</h2>\r\n <div>\r\n <br/><br/><label>FirstName</label> \r\n <input id='firstName' type='text' value={this.state.firstName} onChange={this.handleFirstName} />\r\n\r\n <div style={{ color: 'red', fontSize: 12 }}>{this.state.fName_Error}</div>\r\n {/* ):null} */}\r\n </div> \r\n <div>\r\n <label>LastName</label> \r\n <input className='lastName' type='text' value={this.state.lastName} onChange={this.handleLastName} />\r\n <div style={{ color: 'red', fontSize: 12 }}>{this.state.lName_Error}</div>\r\n </div><br /><br />\r\n <Button variant='contained' color='primary'>LOGIN</Button>\r\n </form>\r\n )\r\n }\r\n}\r\nexport default Search\r\n","D:\\REACTJS-LEARNING\\React-jsx\\my-react-app\\src\\reportWebVitals.js",[],"D:\\REACTJS-LEARNING\\React-jsx\\my-react-app\\src\\App.js",["20"],{"ruleId":"21","severity":1,"message":"22","line":1,"column":17,"nodeType":"23","messageId":"24","endLine":1,"endColumn":26},{"ruleId":"21","severity":1,"message":"25","line":1,"column":8,"nodeType":"23","messageId":"24","endLine":1,"endColumn":12},"no-unused-vars","'Component' is defined but never used.","Identifier","unusedVar","'logo' is defined but never used."]