initial commit
This commit is contained in:
13
resources/js/Pages/Songs/Index.tsx
Normal file
13
resources/js/Pages/Songs/Index.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
export default function Index({ songs }) {
|
||||
console.log('Songs/Index.jsx se está ejecutando');
|
||||
return (
|
||||
<div>
|
||||
<h1>Mis Canciones</h1>
|
||||
<ul>
|
||||
{songs.map((song) => (
|
||||
<li key={song.id}>{song.title}</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user