xref: /MusicFree/src/pages/home/components/homeBodyHorizontal/index.tsx (revision 32683ee62b4655ae6d3cb700ae12398eac644f02)
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