refactor: rename command main ui components to be 'ui-<command>.tsx'

Signed-off-by: Chapman Pendery <cpendery@vt.edu>
This commit is contained in:
Chapman Pendery
2023-10-07 18:58:10 -07:00
parent 9b2851e3db
commit 31ca9b28a2
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { render } from "../ui/ui.js";
import { render } from "../ui/ui-root.js";
import { executeShellCommandTTY } from "../runtime/utils.js";
const shells = ["bash", "powershell", "pwsh"];
-1
View File
@@ -6,7 +6,6 @@ import { getSuggestions } from "../runtime/runtime.js";
import { Suggestion } from "../runtime/model.js";
import Suggestions from "./suggestions.js";
import Input from "./input.js";
import { executeShellCommandTTY } from "../runtime/utils.js";
const Prompt = "> ";
let uiResult = "";