Skip to content

Commit

Permalink
fix: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CrystallineCat committed Nov 26, 2021
1 parent 6fbe186 commit 30324b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from "react";
import styled from "styled-components";
import { CellAddress } from "../../types";
import { setCellLanguageFromName } from "../myths/set-cell-language-from-name";
import { languageOfCellOnly, lookupCodeCellText } from "../selectors";
import { languageOfCellOnly } from "../selectors";

const LeftRightLayout =
styled.div`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,28 +1,21 @@
import { CellType } from "@nteract/commutable";
import { ContentRef } from "@nteract/core";
import {
Cells,
CodeCell,
MarkdownCell,
RawCell,
} from "@nteract/stateful-components";
import { ThemeFromConfig } from "@nteract/stateful-components";
import { Cells, CodeCell, MarkdownCell, RawCell, ThemeFromConfig } from "@nteract/stateful-components";
import React from "react";
import { LanguageSelector } from "@nteract/mythic-notebook";

import StatusBar from "../derived-components/status-bar";
import { ThemableNotifications } from "../derived-components/themable-notifications";
import CellToolbar from "../derived-components/toolbar";

import { DragDropContext as dragDropContext } from "react-dnd";
import HTML5Backend from "react-dnd-html5-backend";
import CellBanner from "../decorators/cell-banner";

import DraggableCell from "../decorators/draggable";
import EditorLoader from "../decorators/editor-loader";
import HijackScroll from "../decorators/hijack-scroll";
import KeyboardShortcuts from "../decorators/kbd-shortcuts";
import UndoableCellDelete from "../decorators/undoable/undoable-cell-delete";
import EditorLoader from "../decorators/editor-loader";
import CellBanner from "../decorators/cell-banner";

import StatusBar from "../derived-components/status-bar";
import { ThemableNotifications } from "../derived-components/themable-notifications";
import CellToolbar from "../derived-components/toolbar";

interface ComponentProps {
contentRef: ContentRef;
Expand Down

0 comments on commit 30324b2

Please sign in to comment.