mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix some pathing issues with ListsTable component
This commit is contained in:
parent
21832f8bdf
commit
2e1a768dcb
4 changed files with 13 additions and 7 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import { DetailsExpander } from "./detailsExpander";
|
||||
import { ListsTable } from "./ListsTable";
|
||||
import { IColumnVisibility } from "./ListsTable";
|
||||
import { ListsTable } from "./listsTable";
|
||||
import { IColumnVisibility } from "./listsTable";
|
||||
import { Tagline } from "./Tagline";
|
||||
|
||||
export {
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
import * as React from "react";
|
||||
import { IListDto } from "./IListDto";
|
||||
import { ISoftwareDto } from "./ISoftwareDto";
|
||||
import { ILanguageDto } from "./ILanguageDto";
|
||||
import { IListDto } from "../../IListDto";
|
||||
import { ISoftwareDto } from "../../ISoftwareDto";
|
||||
import { ILanguageDto } from "../../ILanguageDto";
|
||||
import ReactTable from "react-table"
|
||||
import "react-table/react-table.css"
|
||||
import "./listsTable.css";
|
||||
import * as moment from "moment";
|
||||
import { getContrast } from "../../utils/GetContrast";
|
||||
import { DetailsExpander } from "./components";
|
||||
import { getContrast } from "../../../../utils/GetContrast";
|
||||
import { DetailsExpander } from "../../components";
|
||||
|
||||
export interface IColumnVisibility {
|
||||
column: string;
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
import { ListsTable, IColumnVisibility } from "./ListsTable";
|
||||
|
||||
export {
|
||||
ListsTable,
|
||||
IColumnVisibility
|
||||
};
|
||||
Loading…
Reference in a new issue