瀏覽代碼

Do not merge.

Daniel J. Geiger 2 年之前
父節點
當前提交
157bb7d6d6
共有 2 個文件被更改,包括 2 次插入0 次删除
  1. 1 0
      src/components/App.tsx
  2. 1 0
      src/components/LayerUI.tsx

+ 1 - 0
src/components/App.tsx

@@ -567,6 +567,7 @@ class App extends React.Component<AppProps, AppState> {
                     value={this.actionManager}
                   >
                     <LayerUI
+                      test={<div />}
                       canvas={this.canvas}
                       appState={this.state}
                       files={this.files}

+ 1 - 0
src/components/LayerUI.tsx

@@ -52,6 +52,7 @@ import { useAtom } from "jotai";
 import MainMenu from "./main-menu/MainMenu";
 
 interface LayerUIProps {
+  test: JSX.Element;
   actionManager: ActionManager;
   appState: AppState;
   files: BinaryFiles;