import React from 'react'; import { View } from 'react-native'; import styled from 'styled-components/native'; const ContainerStyled = styled.ScrollView` flex: 1; background-color: ${(props: any) => props.theme.colors.backgroundPage}; `; const SafeAreaStyled = styled.SafeAreaView` flex: 1; background-color: ${(props: any) => props.theme.colors.backgroundPage}; `; export const Container = (props: any) => { return ( {props.noScroll ? ( {props.children} ) : ( {props.children} )} ) }