fix some pathing issues with ListsTable component

This commit is contained in:
Collin M. Barrett 2018-09-15 12:03:38 -05:00
parent 30d62f9610
commit f75af19807
4 changed files with 13 additions and 7 deletions

View file

@ -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 {

View file

@ -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;

View file

@ -0,0 +1,6 @@
import { ListsTable, IColumnVisibility } from "./ListsTable";
export {
ListsTable,
IColumnVisibility
};