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