mirror of
https://github.com/ikun0014/lx-music-mobile.git
synced 2025-07-03 03:12:10 +08:00
12 lines
174 B
TypeScript
12 lines
174 B
TypeScript
import Content from './Content'
|
|
import PlayerBar from '../components/PlayerBar'
|
|
|
|
export default () => {
|
|
return (
|
|
<>
|
|
<Content />
|
|
<PlayerBar />
|
|
</>
|
|
)
|
|
}
|