/* * Copyright (c) 2023 AccelByte Inc. All Rights Reserved * This is licensed software from AccelByte Inc, for limitations * and restrictions contact your company contract manager. */ import React from 'react' import ReactDOM from 'react-dom' import { routes } from './App' import { createBrowserRouter, RouterProvider } from 'react-router-dom' const router = createBrowserRouter(routes) ReactDOM.render(, document.getElementById('app'))