https://gitbrent.github.io/PptxGenJS/docs/masters.html#slide-masters
This should probably be done by passing a prop to <Presentation> with the master slide definitions. See #109 (comment)
const masterSlides = {
MASTER_SLIDE: <Slide>/*..*/</Slide>,
SOMETHING_ELSE: <Slide>/*..*/</Slide>
};
// then later inside a component
const prez = <Presentation master={masterSlides}>/*..*/</Presentation>;
https://gitbrent.github.io/PptxGenJS/docs/masters.html#slide-masters
This should probably be done by passing a prop toSee #109 (comment)<Presentation>with the master slide definitions.