/* Copyright © XlXi 2022 */ import $ from 'jquery'; import React from 'react'; import { render } from 'react-dom'; import Comments from '../components/Comments'; import ThumbnailTool from '../components/ThumbnailTool'; import PlaceButtons from '../components/PlaceButtons'; const thumbnailId = 'vb-thumbnail'; const buttonsId = 'vb-place-buttons'; const commentsId = 'vb-comments'; $(document).ready(function() { if (document.getElementById(thumbnailId)) { let tElem = document.getElementById(thumbnailId); render(, tElem); } if (document.getElementById(buttonsId)) { let bElem = document.getElementById(buttonsId); render(, bElem); } if (document.getElementById(commentsId)) { let cElem = document.getElementById(commentsId); render(, cElem); } });