From 90dac41a045b76d7ba88c5ebe11eabfa6a100704 Mon Sep 17 00:00:00 2001 From: Siklos Date: Sun, 31 Jul 2022 19:13:52 +0200 Subject: [PATCH] Move SVG folder to Components --- src/App.tsx | 6 +++--- src/{ => Components}/SVG/Elements/Container.tsx | 0 src/{ => Components}/SVG/Elements/MainContainer.tsx | 0 src/{ => Components}/SVG/SVG.tsx | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{ => Components}/SVG/Elements/Container.tsx (100%) rename src/{ => Components}/SVG/Elements/MainContainer.tsx (100%) rename src/{ => Components}/SVG/SVG.tsx (100%) diff --git a/src/App.tsx b/src/App.tsx index 4cc0e29..516e2f1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,9 +4,9 @@ import Sidebar from './Components/Sidebar/Sidebar'; import { SVGSidebar } from './Components/SVGSidebar/SVGSidebar'; import { AvailableContainer } from './Interfaces/AvailableContainer'; import { Configuration } from './Interfaces/Configuration'; -import { Container } from './SVG/Elements/Container'; -import { MainContainer } from './SVG/Elements/MainContainer'; -import { SVG } from './SVG/SVG'; +import { Container } from './Components/SVG/Elements/Container'; +import { MainContainer } from './Components/SVG/Elements/MainContainer'; +import { SVG } from './Components/SVG/SVG'; interface IAppProps { } diff --git a/src/SVG/Elements/Container.tsx b/src/Components/SVG/Elements/Container.tsx similarity index 100% rename from src/SVG/Elements/Container.tsx rename to src/Components/SVG/Elements/Container.tsx diff --git a/src/SVG/Elements/MainContainer.tsx b/src/Components/SVG/Elements/MainContainer.tsx similarity index 100% rename from src/SVG/Elements/MainContainer.tsx rename to src/Components/SVG/Elements/MainContainer.tsx diff --git a/src/SVG/SVG.tsx b/src/Components/SVG/SVG.tsx similarity index 100% rename from src/SVG/SVG.tsx rename to src/Components/SVG/SVG.tsx