xref: /MusicFree/src/pages/downloading/index.tsx (revision e0caea6e506e32fc9695890a9a9c5855be13e305)
12d2302c5S猫头猫import React from 'react';
22d2302c5S猫头猫import SimpleAppBar from '@/components/base/simpleAppBar';
32d2302c5S猫头猫import StatusBar from '@/components/base/statusBar';
42d2302c5S猫头猫import DownloadingList from './downloadingList';
52d2302c5S猫头猫import MusicBar from '@/components/musicBar';
6*e0caea6eS猫头猫import VerticalSafeAreaView from '@/components/base/verticalSafeAreaView';
7*e0caea6eS猫头猫import globalStyle from '@/constants/globalStyle';
82d2302c5S猫头猫
94060c00aS猫头猫export default function Downloading() {
102d2302c5S猫头猫    return (
11*e0caea6eS猫头猫        <VerticalSafeAreaView style={globalStyle.fwflex1}>
124060c00aS猫头猫            <StatusBar />
134060c00aS猫头猫            <SimpleAppBar title="正在下载" />
144060c00aS猫头猫            <DownloadingList />
154060c00aS猫头猫            <MusicBar />
16*e0caea6eS猫头猫        </VerticalSafeAreaView>
172d2302c5S猫头猫    );
182d2302c5S猫头猫}
19