Skip to content

Commit

Permalink
feat(fullstack) : complete
Browse files Browse the repository at this point in the history
  • Loading branch information
drmolixcool committed Apr 6, 2024
1 parent da62dfb commit 6ae439e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion expo/components/room/Library.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { router } from "expo-router";
import ClockCounterClockwise from "phosphor-react-native/src/icons/ClockCounterClockwise";
import Heart from "phosphor-react-native/src/icons/Heart";
import MusicNote from "phosphor-react-native/src/icons/MusicNote";
import { router } from "expo-router";
import { StyleSheet, View, Text } from "react-native";

import LibraryComponent from "./LibraryComponent";
Expand All @@ -14,6 +14,7 @@ const Library = () => {
title="Mes titres récents"
subtitle="Ajoute une musique à partir des titres récents que tu as écouté"
icon={<ClockCounterClockwise />}
onPress={() => {}}
/>
<LibraryComponent
title="Mes playlists"
Expand All @@ -25,6 +26,7 @@ const Library = () => {
title="Mes titres likés"
subtitle="Ajoute une musique à partir de tes titres likés"
icon={<Heart />}
onPress={() => {}}
/>
</View>
);
Expand Down

0 comments on commit 6ae439e

Please sign in to comment.