mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-24 03:49:11 -05:00
module import fixes
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import { useUserPlaylists } from "@/api/queries/playlist";
|
||||
import { ItemCard } from "@/components/Global/helpers/item-card";
|
||||
import { H2 } from "@/components/Global/helpers/text";
|
||||
import { ProvidedHomeProps } from "@/components/types";
|
||||
import { useUserPlaylists } from "../../../api/queries/playlist";
|
||||
import { ItemCard } from "../../../components/Global/helpers/item-card";
|
||||
import { H2 } from "../../../components/Global/helpers/text";
|
||||
import { ProvidedHomeProps } from "../../../components/types";
|
||||
import React from "react";
|
||||
import { FlatList } from "react-native";
|
||||
import { View } from "tamagui";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { ProvidedHomeProps } from "@/components/types";
|
||||
import { ProvidedHomeProps } from "../../../components/types";
|
||||
import { ScrollView, RefreshControl } from "react-native";
|
||||
import { SafeAreaView } from "react-native-safe-area-context";
|
||||
import { YStack, XStack, Separator } from "tamagui";
|
||||
@@ -6,8 +6,8 @@ import Playlists from "../helpers/playlists";
|
||||
import RecentArtists from "../helpers/recent-artists";
|
||||
import RecentlyPlayed from "../helpers/recently-played";
|
||||
import { useHomeContext } from "../provider";
|
||||
import { H3 } from "@/components/Global/helpers/text";
|
||||
import Avatar from "@/components/Global/helpers/avatar";
|
||||
import { H3 } from "../../../components/Global/helpers/text";
|
||||
import Avatar from "../../../components/Global/helpers/avatar";
|
||||
import Client from "../../../api/client";
|
||||
|
||||
export function ProvidedHome({ route, navigation }: ProvidedHomeProps): React.JSX.Element {
|
||||
|
||||
Reference in New Issue
Block a user