mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
import { Text } from "@/components/common/Text";
|
|
import { View, type ViewProps } from "react-native";
|
|
|
|
interface Props extends ViewProps {}
|
|
|
|
export const TitleHeader: React.FC<Props> = ({ ...props }) => {
|
|
return (
|
|
<View {...props}>
|
|
<Text></Text>
|
|
</View>
|
|
);
|
|
};
|