aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/main.jsx
blob: 53d245a34816a94d9a06fe7ac99e34d16d7f7303 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import React from 'react';
import ReactDOM from 'react-dom/client';
import { App } from 'app/app';

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