| 1 |
/** |
| 2 |
* WordPress dependencies |
| 3 |
*/ |
| 4 |
import { Fragment } from '@wordpress/element'; |
| 5 |
|
| 6 |
/** |
| 7 |
* Internal dependencies |
| 8 |
*/ |
| 9 |
import ContentSection from './content-section'; |
| 10 |
import FormatSection from './format-section'; |
| 11 |
import VoiceSection from './voice-section'; |
| 12 |
import PlayerSection from './player-section'; |
| 13 |
|
| 14 |
export { ContentSection, FormatSection, VoiceSection, PlayerSection }; |
| 15 |
|
| 16 |
export function SettingsPanel() { |
| 17 |
return ( |
| 18 |
<Fragment> |
| 19 |
<ContentSection /> |
| 20 |
<FormatSection /> |
| 21 |
<VoiceSection /> |
| 22 |
<PlayerSection /> |
| 23 |
</Fragment> |
| 24 |
); |
| 25 |
} |
| 26 |
|
| 27 |
export default SettingsPanel; |
| 28 |
|