Changeset 77e572b
- Timestamp:
- 01/27/26 15:53:51 (6 months ago)
- Branches:
- main
- Children:
- c1d2f07
- Parents:
- 4e5cf92
- Location:
- frontend/src/components/userProfile
- Files:
-
- 2 edited
-
ArtistView.tsx (modified) (1 diff)
-
ListenerView.tsx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/components/userProfile/ArtistView.tsx
r4e5cf92 r77e572b 1 1 import { useNavigate } from "react-router-dom"; 2 import { Music, Disc3 , Mic2} from "lucide-react";3 import type { ArtistContributionDTO } from "../../ types";2 import { Music, Disc3 } from "lucide-react"; 3 import type { ArtistContributionDTO } from "../../utils/types"; 4 4 5 5 interface ArtistViewProps { -
frontend/src/components/userProfile/ListenerView.tsx
r4e5cf92 r77e572b 1 1 import { useNavigate } from "react-router-dom"; 2 2 import { Heart, ListMusic, Music, Album } from "lucide-react"; 3 4 interface MusicalEntityDTO { 5 id: number; 6 title: string; 7 genre: string; 8 type: string; 9 } 10 11 interface Playlist { 12 id: number; 13 name: string; 14 cover: string; 15 creatorName: string; 16 } 3 import type { Playlist, MusicalEntityDTO } from "../../utils/types"; 17 4 18 5 interface ListenerViewProps {
Note:
See TracChangeset
for help on using the changeset viewer.
