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