Files
streamyfin/components/_template.tsx
sarendsen 3fa2747593 wip
2025-03-16 17:31:51 +01:00

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>
);
};