����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
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' )
);
}
} );