* UPDATE: Adds cell and formula editing * FIX: Do not loose focus when clicking on the formula we are editing * FIX: Minimal implementation of browse mode * FIX: Initial browse mode within sheets * UPDATE: Webapp Minimal Web Application
16 lines
455 B
TypeScript
16 lines
455 B
TypeScript
import ReactDOM from "react-dom/client";
|
|
import App from "./App.tsx";
|
|
import "./index.css";
|
|
import ThemeProvider from "@mui/material/styles/ThemeProvider";
|
|
import React from "react";
|
|
import { theme } from "./theme.ts";
|
|
|
|
// biome-ignore lint: we know the 'root' element exists.
|
|
ReactDOM.createRoot(document.getElementById("root")!).render(
|
|
<React.StrictMode>
|
|
<ThemeProvider theme={theme}>
|
|
<App />
|
|
</ThemeProvider>
|
|
</React.StrictMode>,
|
|
);
|