-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from ECE49595-Team-6/feat-Playlist-Manager
Merging Playlist Manager Feature
- Loading branch information
Showing
6 changed files
with
510 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -329,4 +329,6 @@ | |
grid-template-rows: repeat(4, 1fr); | ||
row-gap: 13px; | ||
column-gap: 10px; | ||
} | ||
} | ||
|
||
|
Oops, something went wrong.