Files
fltr-app/app/showDetails.tsx
2025-10-02 09:18:44 +02:00

16 lines
298 B
TypeScript

import React from "react";
import { View } from "react-native";
export default function ShowDetails() {
return (
<View
style={{
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "hsl(221, 39%, 12%)",
}}
></View>
);
}