mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:53:24 +00:00
chore: run prettier
This commit is contained in:
@@ -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 (
|
||||
|
Reference in New Issue
Block a user