xref: /MusicFree/src/pages/downloading/index.tsx (revision 734113be9d256a2b4d36bb272d6d3565beaeb236)
1import React from 'react';
2import SimpleAppBar from '@/components/base/simpleAppBar';
3import StatusBar from '@/components/base/statusBar';
4import DownloadingList from './downloadingList';
5import MusicBar from '@/components/musicBar';
6import VerticalSafeAreaView from '@/components/base/verticalSafeAreaView';
7import globalStyle from '@/constants/globalStyle';
8
9export default function Downloading() {
10    return (
11        <VerticalSafeAreaView style={globalStyle.fwflex1}>
12            <StatusBar />
13            <SimpleAppBar title="正在下载" />
14            <DownloadingList />
15            <MusicBar />
16        </VerticalSafeAreaView>
17    );
18}
19