Changes in / [c1d2f07:16aed54]


Ignore:
Location:
frontend/src/components/userProfile
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/components/userProfile/ArtistView.tsx

    rc1d2f07 r16aed54  
    11import { useNavigate } from "react-router-dom";
    2 import { Music, Disc3 } from "lucide-react";
    3 import type { ArtistContributionDTO } from "../../utils/types";
     2import { Music, Disc3, Mic2 } from "lucide-react";
     3import type { ArtistContributionDTO } from "../../types";
    44
    55interface ArtistViewProps {
  • frontend/src/components/userProfile/ListenerView.tsx

    rc1d2f07 r16aed54  
    11import { useNavigate } from "react-router-dom";
    22import { Heart, ListMusic, Music, Album } from "lucide-react";
    3 import type { Playlist, MusicalEntityDTO } from "../../utils/types";
     3
     4interface MusicalEntityDTO {
     5  id: number;
     6  title: string;
     7  genre: string;
     8  type: string;
     9}
     10
     11interface Playlist {
     12  id: number;
     13  name: string;
     14  cover: string;
     15  creatorName: string;
     16}
    417
    518interface ListenerViewProps {
Note: See TracChangeset for help on using the changeset viewer.