You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
311 B
React
13 lines
311 B
React
3 years ago
|
'use client'
|
||
|
|
||
|
import { useAudioPlayer } from '@/components/AudioProvider'
|
||
|
import { PlayButton } from '@/components/player/PlayButton'
|
||
|
|
||
|
export function PlayButtonClient({ audioPlayerData, size }) {
|
||
|
let player = useAudioPlayer(audioPlayerData)
|
||
|
|
||
|
return (
|
||
|
<PlayButton player={player} size={size} />
|
||
|
);
|
||
|
};
|