Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
iamvldmrbrvkv committed Aug 14, 2023
1 parent cd5ee32 commit 35a7ca4
Show file tree
Hide file tree
Showing 16 changed files with 68 additions and 27 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>Jammming</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
25 changes: 0 additions & 25 deletions src/App.js

This file was deleted.

11 changes: 11 additions & 0 deletions src/components/App/App.js
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.
11 changes: 11 additions & 0 deletions src/components/Playlist/Playlist.js
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.
11 changes: 11 additions & 0 deletions src/components/SearchBar/SearchBar.js
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.
11 changes: 11 additions & 0 deletions src/components/SearchResults/SearchResults.js
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.
11 changes: 11 additions & 0 deletions src/components/Track/Track.js
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.
11 changes: 11 additions & 0 deletions src/components/Tracklist/Tracklist.js
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.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import App from './components/App/App';
import reportWebVitals from './reportWebVitals';

const root = ReactDOM.createRoot(document.getElementById('root'));
Expand Down

0 comments on commit 35a7ca4

Please sign in to comment.