fix typecheck on case insensitive file systems

This commit is contained in:
Sebastian Sdorra
2019-12-05 08:56:40 +01:00
parent 5718262687
commit 79abecfd36
4 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
import React, { FC, ReactNode } from "react";
import { ColumnProps } from "./table";
import { ColumnProps } from "./types";
type Props = ColumnProps & {
children: (row: any, columnIndex: number) => ReactNode;

View File

@@ -1,6 +1,6 @@
import React, { FC, ReactElement, useEffect, useState } from "react";
import styled from "styled-components";
import { Comparator } from "./table";
import { Comparator } from "./types";
import SortIcon from "./SortIcon";
import Notification from "../Notification";

View File

@@ -1,5 +1,5 @@
import React, { FC } from "react";
import { ColumnProps } from "./table";
import { ColumnProps } from "./types";
type Props = ColumnProps & {
dataKey: string;