Files
streamyfin/components/_template.tsx
Fredrik Burmester 0d7edca1ad wip
2025-07-15 11:23:35 +02:00

13 lines
273 B
TypeScript

import { View, type 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 />
</View>
);
};