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