[{"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\index.js":"1","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\reportWebVitals.js":"2","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Place.js":"3","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Login.js":"4","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\utils\\catchErrors.js":"5","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Signup.js":"6","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\utils\\auth.js":"7","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Paginations.js":"8","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Search.js":"9","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\App.js":"10","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\PrivateRoute.js":"11","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Bookmark.js":"12"},{"size":1267,"mtime":1611500254459,"results":"13","hashOfConfig":"14"},{"size":362,"mtime":499162500000,"results":"15","hashOfConfig":"14"},{"size":1650,"mtime":1611552739016,"results":"16","hashOfConfig":"14"},{"size":3147,"mtime":1611538326554,"results":"17","hashOfConfig":"14"},{"size":405,"mtime":1609915408569,"results":"18","hashOfConfig":"14"},{"size":2995,"mtime":1611489922054,"results":"19","hashOfConfig":"14"},{"size":726,"mtime":1611495738863,"results":"20","hashOfConfig":"14"},{"size":2199,"mtime":1610503781980,"results":"21","hashOfConfig":"14"},{"size":10588,"mtime":1611552795555,"results":"22","hashOfConfig":"14"},{"size":2167,"mtime":1611500202857,"results":"23","hashOfConfig":"14"},{"size":486,"mtime":1611489922054,"results":"24","hashOfConfig":"14"},{"size":2609,"mtime":1611551384114,"results":"25","hashOfConfig":"14"},{"filePath":"26","messages":"27","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"28","usedDeprecatedRules":"29"},"1t9w6go",{"filePath":"30","messages":"31","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"29"},{"filePath":"32","messages":"33","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"34","messages":"35","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"29"},{"filePath":"36","messages":"37","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"29"},{"filePath":"38","messages":"39","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"29"},{"filePath":"40","messages":"41","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"29"},{"filePath":"42","messages":"43","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"29"},{"filePath":"44","messages":"45","errorCount":0,"warningCount":14,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"46","messages":"47","errorCount":0,"warningCount":4,"fixableErrorCount":0,"fixableWarningCount":0,"source":"48","usedDeprecatedRules":"29"},{"filePath":"49","messages":"50","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"29"},{"filePath":"51","messages":"52","errorCount":0,"warningCount":15,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\index.js",["53"],"import React from 'react';\r\nimport ReactDOM from 'react-dom';\r\nimport './index.css';\r\nimport 'bootstrap/dist/css/bootstrap.min.css';\r\nimport App from './App'\r\nimport Search from './Search';\r\nimport reportWebVitals from './reportWebVitals';\r\nimport Signup from './Components/Signup'\r\nimport Login from './Components/Login'\r\nimport PrivateRoute from \"./Components/PrivateRoute\";\r\nimport axios from 'axios'\r\nimport Bookmark from \"./Bookmark\"\r\nimport {\r\n BrowserRouter as Router,\r\n Switch,\r\n Route,\r\n Redirect,\r\n} from \"react-router-dom\";\r\n\r\nReactDOM.render(\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n ,\r\n document.getElementById('root')\r\n);\r\n\r\n// If you want to start measuring performance in your app, pass a function\r\n// to log results (for example: reportWebVitals(console.log))\r\n// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals\r\nreportWebVitals();\r\n",["54","55"],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\reportWebVitals.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Place.js",["56","57"],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Login.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\utils\\catchErrors.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Signup.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\utils\\auth.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\Paginations.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Search.js",["58","59","60","61","62","63","64","65","66","67","68","69","70","71"],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\App.js",["72","73","74","75"],"import React, { useEffect, useState } from 'react';\r\nimport { Link, Redirect } from 'react-router-dom';\r\nimport ohuh from './ohuh.PNG'\r\nimport { Container, Row, Form, Image, InputGroup, Button, Col, FormControl, Navbar, Nav } from 'react-bootstrap';\r\nimport { handleLogout, isAuthenticated } from './utils/auth.js'\r\n\r\nfunction App() {\r\n const [state, setState] = useState(false);\r\n const [search, setSearch] = useState(\"\");\r\n const user = isAuthenticated()\r\n\r\n if (state !== false) {\r\n return ;\r\n }\r\n\r\n const handleChange = (e) => {\r\n setSearch(e.target.value);\r\n } //바뀌는 것이 있을때 이벤트 발생\r\n\r\n const handleSubmit = () => {\r\n setState(true);\r\n } //submit 버튼을 누르면 state 값을 true로 바뀐다\r\n\r\n return (\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n
\r\n );\r\n}\r\n\r\nexport default App;\r\n","C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Components\\PrivateRoute.js",[],"C:\\Users\\hello\\Desktop\\project\\search-page\\client\\src\\Bookmark.js",["76","77","78","79","80","81","82","83","84","85","86","87","88","89","90"],{"ruleId":"91","severity":1,"message":"92","line":11,"column":8,"nodeType":"93","messageId":"94","endLine":11,"endColumn":13},{"ruleId":"95","replacedBy":"96"},{"ruleId":"97","replacedBy":"98"},{"ruleId":"91","severity":1,"message":"99","line":7,"column":14,"nodeType":"93","messageId":"94","endLine":7,"endColumn":19},{"ruleId":"100","severity":1,"message":"101","line":21,"column":6,"nodeType":"102","endLine":21,"endColumn":8,"suggestions":"103"},{"ruleId":"91","severity":1,"message":"104","line":5,"column":83,"nodeType":"93","messageId":"94","endLine":5,"endColumn":88},{"ruleId":"91","severity":1,"message":"105","line":7,"column":8,"nodeType":"93","messageId":"94","endLine":7,"endColumn":19},{"ruleId":"91","severity":1,"message":"92","line":9,"column":8,"nodeType":"93","messageId":"94","endLine":9,"endColumn":13},{"ruleId":"91","severity":1,"message":"106","line":22,"column":12,"nodeType":"93","messageId":"94","endLine":22,"endColumn":18},{"ruleId":"91","severity":1,"message":"107","line":23,"column":12,"nodeType":"93","messageId":"94","endLine":23,"endColumn":16},{"ruleId":"91","severity":1,"message":"108","line":24,"column":12,"nodeType":"93","messageId":"94","endLine":24,"endColumn":16},{"ruleId":"91","severity":1,"message":"109","line":24,"column":18,"nodeType":"93","messageId":"94","endLine":24,"endColumn":25},{"ruleId":"91","severity":1,"message":"110","line":25,"column":12,"nodeType":"93","messageId":"94","endLine":25,"endColumn":19},{"ruleId":"91","severity":1,"message":"111","line":25,"column":21,"nodeType":"93","messageId":"94","endLine":25,"endColumn":31},{"ruleId":"91","severity":1,"message":"112","line":26,"column":12,"nodeType":"93","messageId":"94","endLine":26,"endColumn":17},{"ruleId":"91","severity":1,"message":"113","line":26,"column":19,"nodeType":"93","messageId":"94","endLine":26,"endColumn":27},{"ruleId":"91","severity":1,"message":"114","line":28,"column":11,"nodeType":"93","messageId":"94","endLine":28,"endColumn":22},{"ruleId":"91","severity":1,"message":"115","line":29,"column":11,"nodeType":"93","messageId":"94","endLine":29,"endColumn":21},{"ruleId":"116","severity":1,"message":"117","line":99,"column":35,"nodeType":"118","endLine":99,"endColumn":76},{"ruleId":"91","severity":1,"message":"119","line":1,"column":17,"nodeType":"93","messageId":"94","endLine":1,"endColumn":26},{"ruleId":"91","severity":1,"message":"120","line":2,"column":10,"nodeType":"93","messageId":"94","endLine":2,"endColumn":14},{"ruleId":"91","severity":1,"message":"121","line":4,"column":64,"nodeType":"93","messageId":"94","endLine":4,"endColumn":75},{"ruleId":"91","severity":1,"message":"122","line":4,"column":77,"nodeType":"93","messageId":"94","endLine":4,"endColumn":83},{"ruleId":"91","severity":1,"message":"119","line":1,"column":27,"nodeType":"93","messageId":"94","endLine":1,"endColumn":36},{"ruleId":"91","severity":1,"message":"123","line":2,"column":10,"nodeType":"93","messageId":"94","endLine":2,"endColumn":15},{"ruleId":"91","severity":1,"message":"124","line":2,"column":17,"nodeType":"93","messageId":"94","endLine":2,"endColumn":20},{"ruleId":"91","severity":1,"message":"125","line":2,"column":22,"nodeType":"93","messageId":"94","endLine":2,"endColumn":26},{"ruleId":"91","severity":1,"message":"126","line":2,"column":45,"nodeType":"93","messageId":"94","endLine":2,"endColumn":48},{"ruleId":"91","severity":1,"message":"127","line":2,"column":82,"nodeType":"93","messageId":"94","endLine":2,"endColumn":87},{"ruleId":"91","severity":1,"message":"128","line":2,"column":89,"nodeType":"93","messageId":"94","endLine":2,"endColumn":94},{"ruleId":"91","severity":1,"message":"129","line":13,"column":7,"nodeType":"93","messageId":"94","endLine":13,"endColumn":11},{"ruleId":"91","severity":1,"message":"109","line":16,"column":18,"nodeType":"93","messageId":"94","endLine":16,"endColumn":25},{"ruleId":"91","severity":1,"message":"112","line":17,"column":12,"nodeType":"93","messageId":"94","endLine":17,"endColumn":17},{"ruleId":"91","severity":1,"message":"110","line":18,"column":12,"nodeType":"93","messageId":"94","endLine":18,"endColumn":19},{"ruleId":"91","severity":1,"message":"111","line":18,"column":21,"nodeType":"93","messageId":"94","endLine":18,"endColumn":31},{"ruleId":"91","severity":1,"message":"130","line":19,"column":12,"nodeType":"93","messageId":"94","endLine":19,"endColumn":17},{"ruleId":"91","severity":1,"message":"131","line":19,"column":19,"nodeType":"93","messageId":"94","endLine":19,"endColumn":27},{"ruleId":"91","severity":1,"message":"129","line":21,"column":11,"nodeType":"93","messageId":"94","endLine":21,"endColumn":15},"no-unused-vars","'axios' is defined but never used.","Identifier","unusedVar","no-native-reassign",["132"],"no-negated-in-lhs",["133"],"'setDb' is assigned a value but never used.","react-hooks/exhaustive-deps","React Hook useEffect has a missing dependency: 'getReview'. Either include it or remove the dependency array.","ArrayExpression",["134"],"'Modal' is defined but never used.","'catchErrors' is defined but never used.","'mobile' is assigned a value but never used.","'show' is assigned a value but never used.","'page' is assigned a value but never used.","'setPage' is assigned a value but never used.","'success' is assigned a value but never used.","'setSuccess' is assigned a value but never used.","'error' is assigned a value but never used.","'setError' is assigned a value but never used.","'handleClose' is assigned a value but never used.","'handleShow' is assigned a value but never used.","react/jsx-no-duplicate-props","No duplicate props allowed","JSXAttribute","'useEffect' is defined but never used.","'Link' is defined but never used.","'FormControl' is defined but never used.","'Navbar' is defined but never used.","'Alert' is defined but never used.","'Col' is defined but never used.","'Card' is defined but never used.","'Row' is defined but never used.","'Image' is defined but never used.","'Table' is defined but never used.","'user' is assigned a value but never used.","'state' is assigned a value but never used.","'setState' is assigned a value but never used.","no-global-assign","no-unsafe-negation",{"desc":"135","fix":"136"},"Update the dependencies array to be: [getReview]",{"range":"137","text":"138"},[605,607],"[getReview]"]