Skip to content

Commit

Permalink
Fix import ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanLeRoy committed Apr 24, 2024
1 parent 67ca87f commit 9a04f7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/components/FileRow/index.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import classNames from "classnames";
import { map } from "lodash";
import * as React from "react";
import { useSelector } from "react-redux";

import Cell from "./Cell";
import { OnSelect } from "../FileList/useFileSelector";
import { selection } from "../../state";

import styles from "./FileRow.module.css";
import { useSelector } from "react-redux";
import { selection } from "../../state";

export interface CellConfig {
columnKey: string;
Expand Down

0 comments on commit 9a04f7a

Please sign in to comment.