From 662a530d899fd09a060d67cfb13e86ce6babec49 Mon Sep 17 00:00:00 2001 From: Noah Date: Fri, 1 Aug 2025 18:28:25 +0200 Subject: [PATCH] Changed components folder to screens --- Spotify.md => frontend/Spotify.md | 0 frontend/src/App.jsx | 6 +++--- frontend/src/{components => screens}/CreateStation.jsx | 0 frontend/src/{components => screens}/Home.jsx | 0 frontend/src/{components => screens}/JoinStation.jsx | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename Spotify.md => frontend/Spotify.md (100%) rename frontend/src/{components => screens}/CreateStation.jsx (100%) rename frontend/src/{components => screens}/Home.jsx (100%) rename frontend/src/{components => screens}/JoinStation.jsx (100%) diff --git a/Spotify.md b/frontend/Spotify.md similarity index 100% rename from Spotify.md rename to frontend/Spotify.md diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 155ad47..a84212c 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -1,8 +1,8 @@ import React from 'react'; import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; -import Home from './components/Home'; -import CreateStation from './components/CreateStation'; -import JoinStation from './components/JoinStation'; +import Home from './screens/Home'; +import CreateStation from './screens/CreateStation'; +import JoinStation from './screens/JoinStation'; import './App.css'; function App() { diff --git a/frontend/src/components/CreateStation.jsx b/frontend/src/screens/CreateStation.jsx similarity index 100% rename from frontend/src/components/CreateStation.jsx rename to frontend/src/screens/CreateStation.jsx diff --git a/frontend/src/components/Home.jsx b/frontend/src/screens/Home.jsx similarity index 100% rename from frontend/src/components/Home.jsx rename to frontend/src/screens/Home.jsx diff --git a/frontend/src/components/JoinStation.jsx b/frontend/src/screens/JoinStation.jsx similarity index 100% rename from frontend/src/components/JoinStation.jsx rename to frontend/src/screens/JoinStation.jsx