import { render } from 'preact'; import { RoutePlanner } from './routePlanner'; import './style.css'; export function App() { return ; } const app = document.getElementById('app'); if (app) { render(, app); } else { console.error('Cannot find app container'); }