import { View } from "native-base"; import React, { ReactNode } from "react"; import { withTheme } from "../../theme/hoc/withTheme"; interface ILayoutProps { children: ReactNode; } const Layout = withTheme({ name: "Layout" })(({ children, ...props }: ILayoutProps) => ( {children} )); export const theme = { baseStyle: { backgroundColor: "#fff", borderColor: "rgba(208, 217, 228, 0.483146)", boxShadow: "3px 3px 10px -1px rgba(11, 27, 102, 0.304824)" } }; export default Layout;