File "with-player-data.js"

Full Path: /home/tekvhqgl/public_html/dev2024_old_skip/wp-content/plugins/presto-player/src/admin/blocks/blocks/with-player-data.js
File size: 393 bytes
MIME-type: text/plain
Charset: utf-8

const { withSelect } = wp.data;

export default function (props) {
  return withSelect((select) => {
    return {
      branding: select("presto-player/player").branding(),
      loading: select("presto-player/player").isResolving("getPresets"),
      presets: select("presto-player/player").getPresets(),
      defaultPreset: select("presto-player/player").getDefaultPreset(),
    };
  });
}