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/Form/Items/AddNewItemForm.tsx | 2 +- src/components/Form/Items/RegisterItemForm.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/Form/Items') diff --git a/src/components/Form/Items/AddNewItemForm.tsx b/src/components/Form/Items/AddNewItemForm.tsx index b810964..7988ddd 100644 --- a/src/components/Form/Items/AddNewItemForm.tsx +++ b/src/components/Form/Items/AddNewItemForm.tsx @@ -7,7 +7,7 @@ */ import React, { useState } from "react"; -import { Item } from "../../../interfaces"; +import { Item } from "../../../Interfaces/interfaces"; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faSync } from '@fortawesome/free-solid-svg-icons' import "./../Form.scss"; diff --git a/src/components/Form/Items/RegisterItemForm.tsx b/src/components/Form/Items/RegisterItemForm.tsx index 4089084..4c90875 100644 --- a/src/components/Form/Items/RegisterItemForm.tsx +++ b/src/components/Form/Items/RegisterItemForm.tsx @@ -8,7 +8,7 @@ import React, { useState, Dispatch, SetStateAction } from "react"; import "./../Form.scss"; -import { NewItem } from "./../../../interfaces" +import { NewItem } from "./../../../Interfaces/interfaces" import axios from "axios"; interface props { -- cgit v1.2.3