JSFiddle - React, Tailwind, and code Playground

by Jean-Baptiste Audras

HTML

CSS => style.css
Javascript => functions.php

CSS

/*
 Theme Name:   Divi Child
 Theme URI:    http://atelier-111.fr/
 Description:  Theme enfant créé par l'Atelier 111.
 Author:       Atelier 111
 Author URI:   http://atelier-111.fr/
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  divi-child
*/

JavaScript

<?php
// Mon thème enfant	
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
?>