JSFiddle - React, Tailwind, and code Playground

by brunogc

HTML

<?php
  require('Pusher.php');

  $options = array(
    'encrypted' => true
  );
  $pusher = new Pusher(
    '6d671d385b339ed84bfa',
    '8de273ae466202c6ba4a',
    '303330',
    $options
  );

  $data['message'] = 'hello world';
  $pusher->trigger('my-channel', 'my-event', $data);
?>