xref: /MusicFree/src/pages/home/components/homeBodyHorizontal/index.tsx (revision 6613e77203923e5b1742a49281bfa5de03fc1440)
1import React from 'react';
2import globalStyle from '@/constants/globalStyle';
3import Operations from './operations';
4import {View} from 'react-native';
5import Sheets from '../homeBody/sheets';
6
7export default function HomeBodyHorizontal() {
8    return (
9        <View style={globalStyle.rowfwflex1}>
10            <Operations />
11            <View style={globalStyle.fwflex1}>
12                <Sheets />
13            </View>
14        </View>
15    );
16}
17