Skip to content

Commit

Permalink
Moved files #27
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhonatanjacome07 committed Dec 11, 2024
1 parent 24dff7a commit 336516e
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/(page)/explore/components/SongList.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React, { useState, useEffect, useCallback } from "react";
import SongItem from "./SongItem";
import Player from "@/components/ui/Player";
import { fetchSongsList } from "@/utils/fetchSongsList";
import { fetchSongsList } from "@/app/(page)/explore/services/fetchSongsList";
import { useFilterSongs } from "@/hooks/useFilterSongs";
import { Song } from "@/types/ui/Song";
import { formatDuration } from "@/utils/formatDuration";
import { formatDuration } from "@/app/(page)/explore/services/formatDuration";

interface SongListProps {
searchTerm?: string;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion frontend/src/components/ui/Player.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useRef, useState } from "react";
import Image from "next/image";
import { formatDuration } from "@/utils/formatDuration";
import { formatDuration } from "@/app/(page)/explore/services/formatDuration";
import {
SkipBack,
Rewind,
Expand Down

0 comments on commit 336516e

Please sign in to comment.