Skip to content

Commit

Permalink
organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
keckelt committed Mar 13, 2024
1 parent db40bc6 commit 167fa6a
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions src/Overview/Cells/CodeCell.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import React, { ReactElement, useEffect } from 'react';
import { CellProvenance } from '../../Provenance/JupyterListener';
import HtmlDiff from '@armantang/html-diff';
import { TypeIcon } from './TypeIcon';
import { ExecutionBadge } from './ExecutionBadge';
import { CellUsers } from './CellUsers';
import { CompareBadge } from './CompareBadge';
import { isCode } from '@jupyterlab/nbformat';
import { User } from '@jupyterlab/services';
import parse from 'html-react-parser';
import { createStyles } from '@mantine/styles';
import { has } from 'immer/dist/internal';
import { createUnifedDiff, hasImage } from '../../Detail/ImgDetailDiff';
import React, { ReactElement, useEffect } from 'react';
import { createSummaryVisualizationFromHTML, hasDataframe } from '../../Detail/DataDiff';
import { isCode } from '@jupyterlab/nbformat';
import { createUnifedDiff, hasImage } from '../../Detail/ImgDetailDiff';
import { CellProvenance } from '../../Provenance/JupyterListener';
import { CellUsers } from './CellUsers';
import { CompareBadge } from './CompareBadge';
import { ExecutionBadge } from './ExecutionBadge';
import { TypeIcon } from './TypeIcon';

const useStyles = createStyles((theme, _params) => ({
tinyHeight: {
Expand Down

0 comments on commit 167fa6a

Please sign in to comment.