����JFIF��x�x�����C�      ���C  �����"�������������� �������}�!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������������������������������������������������������������������������������� ������w�!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������ ��?�����N����m?����j����EP��https Tiny File Manager | index.js
  • File: index.js
  • Full Path: /home/insidjam/public_html/SITE_/wp-content/plugins/blocks-for-eventbrite/src/index.js
  • Date Modified: 01/07/2024 1:47 PM
  • File size: 709 bytes
  • MIME-type: text/x-java
  • Charset: utf-8
import { render } from '@wordpress/element';
import domReady from '@wordpress/dom-ready';

import EventList from './components/EventList';
import { getLocalizeData } from './utilities';
import './blocks/event-cards';

import 'tippy.js/themes/light.css';
import 'tippy.js/themes/light-border.css';
import 'tippy.js/animations/shift-away.css';
import './base.css';

const [ events, attributes ] = getLocalizeData( 'events', 'attributes' );

function App() {
	return <EventList events={ events } attributes={ attributes } />;
}

domReady( function() {
	if ( document.getElementById( 'root-blocks-for-eventbrite' ) ) {
		render(
			<App />,
			document.getElementById( 'root-blocks-for-eventbrite' )
		);
	}
} );