diff --git a/src/App.js b/src/App.js
index a67c4b7..17ae30b 100644
--- a/src/App.js
+++ b/src/App.js
@@ -6,8 +6,9 @@ import React, {
useLayoutEffect,
useCallback,
} from "react";
-import "rc-slider/assets/index.css";
-import "./App.css";
+...
+import SingleRow from "./components/SingleRow";
+import SettingsPanel from "./components/SettingsPanel";
import { Dialog } from "@headlessui/react";
import ClipLoader from "react-spinners/ClipLoader";
@@ -159,37 +160,6 @@ function SearchPanel({
);
}
-const ConfigPanel = ({ zoomLevel, setZoomLevel, configModalOpen, setConfigModalOpen }) => {
- // zoom slider
- return (
- <>
-
-
- setZoomLevel(x)}
- min={-9.5}
- max={1}
- step={0.001}
- style={{ width: 150 }}
- className="inline-block mx-3"
- />
-
- >
- );
-};
function GensploreView({ genbankString, searchInput, setSearchInput }) {
const [searchPanelOpen, setSearchPanelOpen] = useState(false);
@@ -545,7 +515,7 @@ function GensploreView({ genbankString, searchInput, setSearchInput }) {
)}
-
+