import { ContentPadding } from "@/constants/theme"; import { ReactNode } from "react"; import { ScrollView, StyleSheet } from "react-native"; interface ContentProps { children?: ReactNode } const Content = ({ children }: ContentProps) => { return { children } } const styles = StyleSheet.create({ content: { padding: ContentPadding } }); export default Content;