{"version":3,"file":"static/js/8737.ce81c4a5.chunk.js","mappings":"+KAGA,MAiBA,EALwBA,KACtB,MAAM,KAAEC,GAZKC,aAAaC,QAAQ,UAEzB,CACLF,MAAM,GAGD,CACLA,MAAM,GAMV,OAAOA,GAAOG,EAAAA,EAAAA,KAACC,EAAAA,GAAM,KAAMD,EAAAA,EAAAA,KAACE,EAAAA,GAAQ,CAACC,GAAG,UAAW,C","sources":["utils/routes/ProtectedRoutes.js"],"sourcesContent":["import React from \"react\";\nimport { Navigate, Outlet } from \"react-router-dom\";\n\nconst useAuth = () => {\n const user = localStorage.getItem(\"userID\");\n if (user) {\n return {\n auth: true,\n };\n } else {\n return {\n auth: false,\n };\n }\n};\nconst ProtectedRoutes = () => {\n const { auth } = useAuth();\n return auth ? : ;\n};\n\nexport default ProtectedRoutes;\n"],"names":["ProtectedRoutes","auth","localStorage","getItem","_jsx","Outlet","Navigate","to"],"sourceRoot":""}