forked from Ninjalama/streamyfin_mirror
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
import { View, ViewProps } from "react-native";
|
|
import { Text } from "@/components/common/Text";
|
|
|
|
interface Props extends ViewProps {}
|
|
|
|
export const TitleHeader: React.FC<Props> = ({ ...props }) => {
|
|
return (
|
|
<View {...props}>
|
|
<Text></Text>
|
|
</View>
|
|
);
|
|
};
|