Skip to content

Commit

Permalink
Merge pull request #15 from ECE49595-Team-6/feat-Playlist-Manager
Browse files Browse the repository at this point in the history
Merging Playlist Manager Feature
  • Loading branch information
anishsudini authored Oct 31, 2024
2 parents eeb9aaf + b54e200 commit e0b7583
Show file tree
Hide file tree
Showing 6 changed files with 510 additions and 10 deletions.
19 changes: 10 additions & 9 deletions src/app.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import React from "react";
import NowPlaying from "./components/NowPlaying";
import NowPlaying from "./components/NowPlaying";

class App extends React.Component<{}, {}> {
render() {
return (
<>
<NowPlaying />
</>
);
}
// --- React Component for the App ---
class App extends React.Component {
render() {
return (
<>
<NowPlaying />
</>
);
}
}

export default App;
4 changes: 3 additions & 1 deletion src/css/app.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -329,4 +329,6 @@
grid-template-rows: repeat(4, 1fr);
row-gap: 13px;
column-gap: 10px;
}
}


Loading

0 comments on commit e0b7583

Please sign in to comment.