mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-26 13:08:38 -06:00
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
import { createStackNavigator } from "@react-navigation/stack"
|
|
import { NowPlaying } from "./CarPlay/NowPlaying";
|
|
|
|
const Stack = createStackNavigator();
|
|
|
|
export default function JellifyCarplay(): React.JSX.Element {
|
|
|
|
return (
|
|
<Stack.Navigator>
|
|
<Stack.Screen name="NowPlaying" component={NowPlaying} />
|
|
</Stack.Navigator>
|
|
)
|
|
} |