diff --git a/src/FilterLists.Web/ClientApp/modules/home/Home.tsx b/src/FilterLists.Web/ClientApp/modules/home/Home.tsx index 0121f1fe2..36392701c 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/Home.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/Home.tsx @@ -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 }, diff --git a/src/FilterLists.Web/ClientApp/modules/home/ListsTable.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/ListsTable.tsx similarity index 100% rename from src/FilterLists.Web/ClientApp/modules/home/ListsTable.tsx rename to src/FilterLists.Web/ClientApp/modules/home/components/ListsTable.tsx diff --git a/src/FilterLists.Web/ClientApp/modules/home/Tagline.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/Tagline.tsx similarity index 100% rename from src/FilterLists.Web/ClientApp/modules/home/Tagline.tsx rename to src/FilterLists.Web/ClientApp/modules/home/components/Tagline.tsx diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/index.ts b/src/FilterLists.Web/ClientApp/modules/home/components/index.ts index 0bfa78841..4b538e956 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/index.ts +++ b/src/FilterLists.Web/ClientApp/modules/home/components/index.ts @@ -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 }; \ No newline at end of file