mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:23:28 +00:00
16 lines
380 B
TypeScript
16 lines
380 B
TypeScript
import { View } from "react-native";
|
|
|
|
import { BottomControls } from "./BottomControls";
|
|
import { Header } from "./Header";
|
|
import { MiddleControls } from "./MiddleControls";
|
|
|
|
export const ControlsOverlay = () => {
|
|
return (
|
|
<View className="flex w-full flex-1 flex-col justify-between">
|
|
<Header />
|
|
<MiddleControls />
|
|
<BottomControls />
|
|
</View>
|
|
);
|
|
};
|