import React from 'react' import { Scheduling } from './components/Scheduling' import type { User } from './services/supabase' interface AppProps { user?: User currentRoute?: string } export default function App(props: AppProps) { // Get user and route from props or try to get from window (for standalone testing) const user = props.user || (window as any).__SCHEDULING_USER__ const currentRoute = props.currentRoute || window.location.pathname if (!user) { return (