import React from "react"; import { View } from "react-native"; import { useTheme } from "@styles"; const Layout = ({ children }) => { const { colors } = useTheme(); return ( {children} ); }; export default Layout;