Build in the review tool.

This commit is contained in:
Greyson Parrelli
2026-08-24 09:24:01 -04:00
parent 4eef6a28d3
commit 407dd81512
55 changed files with 12932 additions and 40 deletions
+16
View File
@@ -0,0 +1,16 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
// No webfonts: the styling copies GitHub, and GitHub renders its UI and its
// diffs in the platform's own system and monospace faces.
// Import the library's base diff styles BEFORE ours so our overrides win.
import 'react-diff-view/style/index.css';
import './styles.css';
import App from './App';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
);