import React from 'react';
import ReactDOM from 'react-dom/client';
import { HashRouter, Routes, Route, Navigate, useLocation } from 'react-router-dom';
import { AnimatePresence } from 'framer-motion';
import LicensePlateApp from './LicensePlateApp.jsx';
import CarManager from './CarManager.jsx';
import LandingPage from './LandingPage.jsx';
import PrintPage from './routes/PrintPage.jsx';
import './fonts.css';
import './index.css';
function AnimatedRoutes() {
const location = useLocation();
return (
} />
} />
} />
} />
} />
);
}
function App() {
return (
);
}
ReactDOM.createRoot(document.getElementById('root')).render(
,
);