Changes in / [16aed54:c1d2f07]


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

Legend:

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

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

    r16aed54 rc1d2f07  
    11import { useNavigate } from "react-router-dom";
    22import { 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 }
     3import type { Playlist, MusicalEntityDTO } from "../../utils/types";
    174
    185interface ListenerViewProps {
Note: See TracChangeset for help on using the changeset viewer.