2023-08-21 20:09:24 +08:00

12 lines
174 B
TypeScript

import Content from './Content'
import PlayerBar from '../components/PlayerBar'
export default () => {
return (
<>
<Content />
<PlayerBar />
</>
)
}