mirror of
https://github.com/WordPress/create-block-theme.git
synced 2026-07-31 00:26:58 +08:00
14 lines
329 B
PHP
14 lines
329 B
PHP
<?php
|
|
|
|
require_once( dirname( __DIR__ ) . '/class-react-app.php' );
|
|
|
|
class Google_Fonts {
|
|
public static function google_fonts_admin_page() {
|
|
React_App::bootstrap();
|
|
?>
|
|
<input id="nonce" type="hidden" value="<?php echo wp_create_nonce( 'create_block_theme' ); ?>" />
|
|
<div id="create-block-theme-app"></div>
|
|
|
|
<?php
|
|
}
|
|
}
|