Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarkauskas committed Mar 19, 2024
1 parent 77aa38f commit cec988e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/view/app/Indexes/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
import { createRoot } from 'react-dom/client';
import './indexes.css';
import Indexes from './indexes';
import { ISettings } from '@src/common/IExtensionSettings';

declare global {
interface Window {
acquireVsCodeApi(): any;
configuration: ISettings;
}
}

const root = createRoot(document.getElementById('root'));
root.render(<Indexes />);

0 comments on commit cec988e

Please sign in to comment.