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