1import React from 'react'; 2import globalStyle from '@/constants/globalStyle'; 3import {ScrollView} from 'react-native-gesture-handler'; 4import Operations from './operations'; 5import Sheets from './sheets'; 6 7export default function HomeBody() { 8 return ( 9 <ScrollView 10 style={globalStyle.fwflex1} 11 contentContainerStyle={globalStyle.fwflex1} 12 showsVerticalScrollIndicator={false}> 13 <Operations /> 14 <Sheets /> 15 </ScrollView> 16 ); 17} 18