mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
re-org home components
This commit is contained in:
parent
e4564b4f29
commit
21832f8bdf
4 changed files with 8 additions and 4 deletions
|
|
@ -2,9 +2,7 @@ import * as React from "react";
|
|||
import { IListDto } from "./IListDto";
|
||||
import { ISoftwareDto } from "./ISoftwareDto";
|
||||
import { ILanguageDto } from "./ILanguageDto";
|
||||
import { Tagline } from "./Tagline";
|
||||
import { ListsTable } from "./ListsTable";
|
||||
import { IColumnVisibility } from "./ListsTable";
|
||||
import { Tagline, ListsTable, IColumnVisibility } from "./components";
|
||||
|
||||
const columnVisibilityDefaults = [
|
||||
{ column: "Software", visible: true },
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
import { DetailsExpander } from "./detailsExpander";
|
||||
import { ListsTable } from "./ListsTable";
|
||||
import { IColumnVisibility } from "./ListsTable";
|
||||
import { Tagline } from "./Tagline";
|
||||
|
||||
export {
|
||||
DetailsExpander
|
||||
DetailsExpander,
|
||||
ListsTable,
|
||||
IColumnVisibility,
|
||||
Tagline
|
||||
};
|
||||
Loading…
Reference in a new issue