18 lines
329 B
JavaScript
18 lines
329 B
JavaScript
/*
|
|
Copyright © XlXi 2022
|
|
*/
|
|
|
|
import $ from 'jquery';
|
|
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
|
|
import Games from '../components/Games';
|
|
|
|
const gamesId = 'vb-games-main';
|
|
|
|
$(document).ready(function() {
|
|
if (document.getElementById(gamesId)) {
|
|
render(<Games />, document.getElementById(gamesId));
|
|
}
|
|
}); |