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