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