-
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.
- Loading branch information
1 parent
cd5ee32
commit 35a7ca4
Showing
16 changed files
with
68 additions
and
27 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import styles from './App.module.css'; | ||
|
||
function App() { | ||
return ( | ||
<div className={styles.App}> | ||
|
||
</div> | ||
); | ||
} | ||
|
||
export default App; |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import styles from './Playlist.module.css'; | ||
|
||
function Playlist() { | ||
return ( | ||
<div className={styles.Playlist}> | ||
|
||
</div> | ||
) | ||
} | ||
|
||
export default Playlist; |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import styles from './SearchBar.module.css'; | ||
|
||
function SearchBar() { | ||
return ( | ||
<div className={styles.SearchBar}> | ||
|
||
</div> | ||
) | ||
} | ||
|
||
export default SearchBar; |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import styles from './SearchResults.module.css'; | ||
|
||
function SearchResults() { | ||
return ( | ||
<div className={styles.SearchResults}> | ||
|
||
</div> | ||
) | ||
} | ||
|
||
export default SearchResults; |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import styles from './Track.module.css'; | ||
|
||
function Track() { | ||
return ( | ||
<div className={styles.Track}> | ||
|
||
</div> | ||
) | ||
} | ||
|
||
export default Track; |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import styles from './Tracklist.module.css'; | ||
|
||
function Tracklist() { | ||
return ( | ||
<div className={styles.Tracklist}> | ||
|
||
</div> | ||
) | ||
} | ||
|
||
export default Tracklist; |
Empty file.
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