|
1
|
export default function ({ attributes, setAttributes }) { |
|
2
|
return ( |
|
3
|
<PanelBody |
|
4
|
title={ |
|
5
|
<> |
|
6
|
{__("Chapters", "presto-player")} <ProBadge /> |
|
7
|
</> |
|
8
|
} |
|
9
|
> |
|
10
|
<VideoChapters setAttributes={setAttributes} attributes={attributes} /> |
|
11
|
</PanelBody> |
|
12
|
); |
|
13
|
} |
|
14
|
|