From 1b4fb073e02d55ec87b9c2053273e93b3ccbf405 Mon Sep 17 00:00:00 2001 From: bananu7 Date: Sat, 8 Oct 2022 18:10:29 +0200 Subject: [PATCH] Moved MatchList and Minimap to components folder --- packages/client/src/App.tsx | 4 ++-- packages/client/src/{ => components}/MatchList.tsx | 0 packages/client/src/{ => components}/Minimap.tsx | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename packages/client/src/{ => components}/MatchList.tsx (100%) rename packages/client/src/{ => components}/Minimap.tsx (100%) diff --git a/packages/client/src/App.tsx b/packages/client/src/App.tsx index d4d44f7..648bb7d 100644 --- a/packages/client/src/App.tsx +++ b/packages/client/src/App.tsx @@ -1,8 +1,8 @@ import { useState, useEffect, useCallback } from 'react' import './App.css' -import { MatchList } from './MatchList'; -import { Minimap } from './Minimap'; +import { MatchList } from './components/MatchList'; +import { Minimap } from './components/Minimap'; import { CommandPalette, SelectedAction } from './components/CommandPalette'; import { BottomUnitView } from './components/BottomUnitView'; import { ResourceView } from './components/ResourceView'; diff --git a/packages/client/src/MatchList.tsx b/packages/client/src/components/MatchList.tsx similarity index 100% rename from packages/client/src/MatchList.tsx rename to packages/client/src/components/MatchList.tsx diff --git a/packages/client/src/Minimap.tsx b/packages/client/src/components/Minimap.tsx similarity index 100% rename from packages/client/src/Minimap.tsx rename to packages/client/src/components/Minimap.tsx