17 lines
326 B
JavaScript
17 lines
326 B
JavaScript
// © XlXi 2021
|
|
// Graphictoria 5
|
|
|
|
import $ from 'jquery';
|
|
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
|
|
import Feed from '../components/Feed';
|
|
|
|
const feedId = 'gt-dash-feed';
|
|
|
|
$(document).ready(function() {
|
|
if (document.getElementById(feedId)) {
|
|
render(<Feed />, document.getElementById(feedId));
|
|
}
|
|
}); |