chore: run prettier

This commit is contained in:
Adrian Castro
2024-02-04 16:15:21 +01:00
parent e3f74aac09
commit dc6e3f5a7f
4 changed files with 71 additions and 46 deletions

View File

@@ -1,7 +1,12 @@
import { Image, View } from "react-native";
import { Text } from "~/components/ui/Text";
export default function Item({ data }: { data: { title: string, type: string, year: number, posterUrl: string } }) {
export default function Item({
data,
}: {
data: { title: string; type: string; year: number; posterUrl: string };
}) {
const { title, type, year, posterUrl } = data;
return (