// Mobile app shell — renders KB page directly

function App() {
  return <KBPage />;
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
