addons/isl/src/index.tsxblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318import 'react';
b69ab319import ReactDOM from 'react-dom/client';
b69ab3110import App from './App';
b69ab3111
b69ab3112// Include CSS variables we use, originally from vscode-webview-ui-toolkit
b69ab3113import 'isl-components/theme/themeDarkVariables.css';
b69ab3114import 'isl-components/theme/themeLightVariables.css';
b69ab3115
b69ab3116// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
b69ab3117const root = ReactDOM.createRoot(document.getElementById('root')!);
b69ab3118root.render(<App />);