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