From c1600045a243e3547fe589bfc7e474d2decaea4c Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Mon, 13 Sep 2021 17:26:09 +0530 Subject: moved interfaces to new folder --- src/components/Display/ClientInfoDisplay.tsx | 2 +- src/components/Display/DisplayItem.tsx | 2 +- src/components/Display/ItemsDisplay.tsx | 2 +- src/components/Display/SummaryDisplay.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/components/Display') diff --git a/src/components/Display/ClientInfoDisplay.tsx b/src/components/Display/ClientInfoDisplay.tsx index ad65e40..fda8fe7 100644 --- a/src/components/Display/ClientInfoDisplay.tsx +++ b/src/components/Display/ClientInfoDisplay.tsx @@ -7,7 +7,7 @@ */ import React from "react"; -import { Person } from "./../../interfaces"; +import { Person } from "./../../Interfaces/interfaces"; import "./Display.scss"; interface Props { diff --git a/src/components/Display/DisplayItem.tsx b/src/components/Display/DisplayItem.tsx index 448460b..26137f5 100644 --- a/src/components/Display/DisplayItem.tsx +++ b/src/components/Display/DisplayItem.tsx @@ -7,7 +7,7 @@ */ import React from "react"; -import { Item } from "./../../interfaces"; +import { Item } from "./../../Interfaces/interfaces"; import "./Display.scss"; interface Props { diff --git a/src/components/Display/ItemsDisplay.tsx b/src/components/Display/ItemsDisplay.tsx index 79eed40..d03ee9e 100644 --- a/src/components/Display/ItemsDisplay.tsx +++ b/src/components/Display/ItemsDisplay.tsx @@ -7,7 +7,7 @@ */ import React from "react"; -import { Item } from "./../../interfaces"; +import { Item } from "./../../Interfaces/interfaces"; import "./Display.scss"; import DisplayItem from "./DisplayItem"; import {SummaryDisplayTR} from "./SummaryDisplay"; diff --git a/src/components/Display/SummaryDisplay.tsx b/src/components/Display/SummaryDisplay.tsx index ae779bf..d2dfb4e 100644 --- a/src/components/Display/SummaryDisplay.tsx +++ b/src/components/Display/SummaryDisplay.tsx @@ -7,7 +7,7 @@ */ import React, {Dispatch, SetStateAction} from "react"; -import { Item, InvoiceSummary } from "./../../interfaces" +import { Item, InvoiceSummary } from "./../../Interfaces/interfaces" import "./Display.scss"; interface Props { -- cgit v1.2.3