mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
17 lines
385 B
TypeScript
17 lines
385 B
TypeScript
import { ItemContent } from "@/components/ItemContent";
|
|
import { Stack, useLocalSearchParams } from "expo-router";
|
|
import React from "react";
|
|
|
|
const Page: React.FC = () => {
|
|
const { id } = useLocalSearchParams() as { id: string };
|
|
|
|
return (
|
|
<>
|
|
<Stack.Screen options={{ autoHideHomeIndicator: true }} />
|
|
<ItemContent id={id} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Page;
|