mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-28 14:00:59 -04:00
27 lines
800 B
JavaScript
27 lines
800 B
JavaScript
import App from "./App";
|
|
import ErrorBoundary from "./components/ErrorBoundary";
|
|
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
import reportWebVitals from "./reportWebVitals";
|
|
import { BrowserRouter as Router } from "react-router-dom";
|
|
import { ThemeProvider } from "./hooks/useTheme";
|
|
import "./styles/index.css";
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<ThemeProvider>
|
|
<Router>
|
|
<ErrorBoundary>
|
|
<App />
|
|
</ErrorBoundary>
|
|
</Router>
|
|
</ThemeProvider>
|
|
</React.StrictMode>,
|
|
document.getElementById("root")
|
|
);
|
|
|
|
// If you want to start measuring performance in your app, pass a function
|
|
// to log results (for example: reportWebVitals(console.log))
|
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
reportWebVitals();
|