Files
streamyfin_mirror/components/_template.tsx
Fredrik Burmester 66179a68ea fix: refactor
2024-08-14 10:46:15 +02:00

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