From cd6974b6873b3717f94e9663e4ae2189e0334528 Mon Sep 17 00:00:00 2001 From: Jon Eugster Date: Wed, 2 Aug 2023 15:32:07 +0200 Subject: [PATCH] rename file --- client/src/components/welcome.tsx | 2 +- .../src/components/{world_selection_menu.css => world_tree.css} | 0 .../src/components/{world_selection_menu.tsx => world_tree.tsx} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename client/src/components/{world_selection_menu.css => world_tree.css} (100%) rename client/src/components/{world_selection_menu.tsx => world_tree.tsx} (99%) diff --git a/client/src/components/welcome.tsx b/client/src/components/welcome.tsx index a27fa0e..eaade2a 100644 --- a/client/src/components/welcome.tsx +++ b/client/src/components/welcome.tsx @@ -15,7 +15,7 @@ import { MobileContext } from './infoview/context' import { InventoryPanel } from './inventory' import Markdown from './markdown' import {PrivacyPolicy} from './privacy_policy' -import { WelcomeMenu, WorldTreePanel } from './world_selection_menu' +import { WelcomeMenu, WorldTreePanel } from './world_tree' import './welcome.css' diff --git a/client/src/components/world_selection_menu.css b/client/src/components/world_tree.css similarity index 100% rename from client/src/components/world_selection_menu.css rename to client/src/components/world_tree.css diff --git a/client/src/components/world_selection_menu.tsx b/client/src/components/world_tree.tsx similarity index 99% rename from client/src/components/world_selection_menu.tsx rename to client/src/components/world_tree.tsx index 2e755e9..a6e3c21 100644 --- a/client/src/components/world_selection_menu.tsx +++ b/client/src/components/world_tree.tsx @@ -8,7 +8,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faDownload, faUpload, faEraser, faGlobe, faArrowLeft } from '@fortawesome/free-solid-svg-icons' import { store } from '../state/store'; -import './world_selection_menu.css' +import './world_tree.css' import { Button } from './button' import { GameIdContext } from '../app';