| 1 |
<?php |
| 2 |
/** |
| 3 |
* Shared React mount for customer account (virtual route + [yatra_my_account] shortcode). |
| 4 |
* |
| 5 |
* Expects boolean $yatra_account_react_embed: false = standalone full page, true = inside theme content. |
| 6 |
*/ |
| 7 |
defined('ABSPATH') || exit(); |
| 8 |
|
| 9 |
$embed = !empty($yatra_account_react_embed); |
| 10 |
$min_h = $embed ? 'min(85vh, 900px)' : '100vh'; |
| 11 |
?> |
| 12 |
<div id="yatra-account-page-root" class="yatra-account-react-root<?php echo $embed ? ' yatra-account-react-root--embed' : ''; ?>" style="width:100%;min-height:<?php echo esc_attr($min_h); ?>;display:block;"></div> |
| 13 |
|