xref: /MusicFree/src/pages/home/components/homeBody/index.tsx (revision 1d8853ac5d2700e07a21c4ffb7a6f6954ebba8e2)
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