๐Ÿ“ฆ ionic-team / capacitor-os-inappbrowser

๐Ÿ“„ main.tsx ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11import React from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';

const container = document.getElementById('root');
const root = createRoot(container!);
root.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);