diff --git a/editor/src/App.tsx b/editor/src/App.tsx
index 9da2f87..b198aa4 100644
--- a/editor/src/App.tsx
+++ b/editor/src/App.tsx
@@ -3,6 +3,7 @@ import "./style.css";
import Canvas from "./Canvas";
import { Editor } from "./editor/Editor";
import Toolbar from "./Toolbar";
+import Tabbar from "./Tabbar";
function App(): ReactElement {
const [editor] = useState(() => new Editor());
@@ -12,8 +13,13 @@ function App(): ReactElement {
<>
nandsim
>
);
diff --git a/editor/src/Canvas.tsx b/editor/src/Canvas.tsx
index 698ac13..e5c07ec 100644
--- a/editor/src/Canvas.tsx
+++ b/editor/src/Canvas.tsx
@@ -5,11 +5,9 @@ import { v2 } from "./editor/V2";
type Props = {
editor: Editor;
canvasRef: RefObject;
- width: number;
- height: number;
};
-function Canvas({ editor, canvasRef, width, height }: Props): ReactElement {
+function Canvas({ editor, canvasRef }: Props): ReactElement {
useEffect(() => {
if (!canvasRef.current) return;
@@ -21,9 +19,7 @@ function Canvas({ editor, canvasRef, width, height }: Props): ReactElement {