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 showsVerticalScrollIndicator={false}> 13 <Operations /> 14 <FavoriteMusicList /> 15 <Sheets /> 16 </ScrollView> 17 ); 18} 19