phaser-jsx
Version:
Use JSX in Phaser.
13 lines • 310 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Fragment = Fragment;
/**
* Fragment groups elements without a wrapper node.
*
* @param props - Props.
* @returns - Children.
*/
function Fragment(props) {
return props.children;
}
//# sourceMappingURL=Fragment.js.map
;