{"version":3,"sources":["routes.js","pages/ErrorSection.js","containers/TheLayout.js","App.js","reportWebVitals.js","index.js"],"names":["Home","React","lazy","Details","routes","path","exact","name","component","breadcrumb","ErrorSection","className","src","alt","to","Component","showLoadingScreen","loaded","id","style","animation","easings","linear","undefined","getErrorSection","props","TheLayout","fallback","map","route","idx","render","errorSection","memo","App","reportWebVitals","onPerfEntry","Function","then","getCLS","getFID","getFCP","getLCP","getTTFB","ReactDOM","StrictMode","document","getElementById"],"mappings":"mIAAA,oBAEMA,EAAOC,IAAMC,MAAK,kBAAM,uDACxBC,EAAUF,IAAMC,MAAK,kBAAM,8DAO3BE,EAAS,CACb,CAAEC,KAAM,IAAKC,OAAO,EAAMC,KAAM,OAAQC,UAAWR,EAAMS,WAAY,QAErE,CAAEJ,KAAM,QAASC,OAAO,EAAMC,KAAM,UAAWC,UATjCP,IAAMC,MAAK,kBAAM,sDASoCO,WAAY,QAC/E,CAAEJ,KAAM,oBAAqBC,OAAO,EAAMC,KAAM,UAAWC,UAAWL,EAASM,WAAY,WAC3F,CAAEJ,KAAM,WAAYC,OAAO,EAAMC,KAAM,UAAWC,UAVpCP,IAAMC,MAAK,kBAAM,sDAUuCO,WAAY,WAClF,CAAEJ,KAAM,WAAYC,OAAO,EAAMC,KAAM,UAAWC,UAVpCP,IAAMC,MAAK,kBAAM,gCAUuCO,WAAY,YAGrEL,O,kNChBTM,E,4JACF,WACI,OACI,mCACI,yBAASC,UAAU,mBAAnB,SACI,sBAAKA,UAAU,YAAf,UACI,oBAAIA,UAAU,eAAe,iBAAe,OAA5C,mBACA,qBAAKA,UAAU,2CAA2C,iBAAe,OAAOC,IAAI,6BAA6BC,IAAI,QACrH,oBAAIF,UAAU,gCAAgC,iBAAe,OAA7D,wCACA,mBAAGA,UAAU,eAAe,iBAAe,OAA3C,0PACA,cAAC,IAAD,CAAMG,GAAG,IAAT,SAAa,oBAAIH,UAAU,uBAAuB,iBAAe,OAApD,8C,GAVVV,IAAMc,WAkBlBL,I,QCNTM,EAAoB,eAACC,EAAD,+DACtB,qBAAKC,GAAG,iBAAiBC,MAAOF,EAAS,CAACG,UAAU,YAAD,OAAcC,UAAQC,OAAtB,yBAAiDC,EAApG,SAA+G,sBAAMZ,UAAU,eAG7Ha,EAAkB,SAACC,GAAD,OAAW,cAAC,EAAD,eAAkBA,KAoK/CC,E,4JACF,WACI,OACI,cAAC,WAAD,CAAUC,SAAUX,IAApB,SACI,eAAC,IAAD,WACKZ,IAAOwB,KAAI,SAACC,EAAOC,GAChB,OAAOD,EAAMrB,WACT,cAAC,IAAD,CAEIH,KAAMwB,EAAMxB,KACZC,MAAOuB,EAAMvB,MACbC,KAAMsB,EAAMtB,KACZwB,OAAQ,SAAAN,GAAK,OACT,cAACI,EAAMrB,UAAP,2BAAqBiB,GAArB,IAA4BT,kBAAmBA,EAAmBgB,aAAcR,EAAgBC,QAL/FK,MASjB,cAAC,IAAD,CAAUzB,KAAK,IAAIS,GAAG,e,GAjBlBb,IAAMc,WAwBfd,MAAMgC,KAAKP,GC5LXQ,MAff,WACE,OACE,cAAC,IAAD,UACI,cAAC,IAAD,UAME,cAAC,IAAD,CAAO7B,KAAK,IAAIE,KAAK,OAAOwB,OAAQ,SAAAN,GAAK,OAAI,cAAC,EAAD,eAAeA,YCDvDU,EAZS,SAAAC,GAClBA,GAAeA,aAAuBC,UACxC,+BAAqBC,MAAK,YAAkD,IAA/CC,EAA8C,EAA9CA,OAAQC,EAAsC,EAAtCA,OAAQC,EAA8B,EAA9BA,OAAQC,EAAsB,EAAtBA,OAAQC,EAAc,EAAdA,QAC3DJ,EAAOH,GACPI,EAAOJ,GACPK,EAAOL,GACPM,EAAON,GACPO,EAAQP,OCDdQ,IAASb,OACP,cAAC,IAAMc,WAAP,UACE,cAAC,EAAD,MAEFC,SAASC,eAAe,SAM1BZ,M","file":"static/js/main.abe2cae2.chunk.js","sourcesContent":["import React from 'react';\r\n\r\nconst Home = React.lazy(() => import('./pages/Home'));\r\nconst Details = React.lazy(() => import('./pages/Details'));\r\nconst Listing = React.lazy(() => import('./pages/Listing'));\r\nconst Contact = React.lazy(() => import('./pages/Contact'));\r\nconst Finance = React.lazy(() => import('./pages/Finance'));\r\n// const Dashboard = React.lazy(() => import('./views/dashboard/Dashboard'));\r\n// const InventoryEdit = React.lazy(() => import('./views/dealership/inventory/InventoryEdit'));\r\n\r\nconst routes = [\r\n { path: '/', exact: true, name: 'Home', component: Home, breadcrumb: 'Home' },\r\n// { path: '/dashboard', name: 'Dashboard', component: Dashboard },\r\n { path: '/cars', exact: true, name: 'Listing', component: Listing, breadcrumb: 'Cars' }, \r\n { path: '/cars/:id/details', exact: true, name: 'Details', component: Details, breadcrumb: 'Details' },\r\n { path: '/contact', exact: true, name: 'Contact', component: Contact, breadcrumb: 'Contact' }, \r\n { path: '/finance', exact: true, name: 'Finance', component: Finance, breadcrumb: 'Finance' }, \r\n];\r\n\r\nexport default routes;\r\n","import React from 'react';\r\nimport { Link } from 'react-router-dom';\r\n\r\nclass ErrorSection extends React.Component {\r\n render() {\r\n return (\r\n <>\r\n
\r\n
\r\n

Error

\r\n \"404\"\r\n

We couldn't load this page

\r\n

We're sorry you couldn't get where you wanted. Please try updating the page, maybe we already fixed it. Otherwise we're most likely already working on this issue and will bring the page back shortly. Please feel free to give us a call.

\r\n

RETURN TO HOME PAGE

\r\n
\r\n
\r\n \r\n );\r\n }\r\n}\r\n\r\nexport default ErrorSection;","import React, { Suspense } from 'react';\r\nimport {\r\n Route,\r\n Redirect,\r\n Switch\r\n} from 'react-router-dom';\r\nimport { AnimateOnChange } from 'react-animation';\r\nimport { animations, easings } from 'react-animation'\r\nimport 'react-animation/dist/keyframes.css'\r\n\r\nimport ErrorSection from '../pages/ErrorSection';\r\n\r\n// routes config\r\nimport routes from '../routes';\r\n \r\nconst showLoadingScreen = (loaded = false) => (\r\n
\r\n);\r\n\r\nconst getErrorSection = (props) => ;\r\n\r\n// class TheLayout extends React.Component {\r\n// render() {\r\n// return (\r\n// <>\r\n//
\r\n//
\r\n//
\r\n//
\r\n//
\r\n// \r\n// 5020 E WASHINGTON BLVD, COMMERCE, CA 90040\r\n//
\r\n//
\r\n//
\r\n//
\r\n// \r\n// 1-818-900-1913\r\n//
\r\n//
\r\n//
\r\n//
\r\n//
\r\n// \r\n\r\n// \r\n// \r\n// {routes.map((route, idx) => {\r\n// return route.component && (\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//
  • Low Prices, No Haggling
  • \r\n//
  • Largest Car Dealership
  • \r\n//
  • Multipoint Safety Check
  • \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// {/* Switcher */}\r\n// \r\n// {/* Owl Carousel */}\r\n// \r\n// {/* bxSlider */}\r\n// \r\n// {/* jQuery UI Slider */}\r\n// \r\n\r\n// {/* Theme */}\r\n// \r\n// \r\n// \r\n// \r\n// \r\n// )\r\n// }\r\n// }\r\n\r\nclass TheLayout extends React.Component {\r\n render() {\r\n return (\r\n \r\n \r\n {routes.map((route, idx) => {\r\n return route.component && (\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 React.memo(TheLayout);","import './App.css';\nimport { HashRouter, Route, Switch } from 'react-router-dom';\nimport TheLayout from './containers/TheLayout';\n\nfunction App() {\n return (\n \n \n {/* */}\n\n {/* } />\n } />*/}\n \n } />\n \n \n );\n}\n\nexport default App;\n","const reportWebVitals = onPerfEntry => {\n if (onPerfEntry && onPerfEntry instanceof Function) {\n import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {\n getCLS(onPerfEntry);\n getFID(onPerfEntry);\n getFCP(onPerfEntry);\n getLCP(onPerfEntry);\n getTTFB(onPerfEntry);\n });\n }\n};\n\nexport default reportWebVitals;\n","import React from 'react';\nimport ReactDOM from 'react-dom';\nimport './index.css';\nimport App from './App';\nimport reportWebVitals from './reportWebVitals';\n\nReactDOM.render(\n \n \n ,\n document.getElementById('root')\n);\n\n// If you want to start measuring performance in your app, pass a function\n// to log results (for example: reportWebVitals(console.log))\n// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals\nreportWebVitals();\n"],"sourceRoot":""}