16 lines
298 B
TypeScript
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>
|
|
);
|
|
}
|