import * as React from "react"; import "jQuery"; import {Reproduction} from "../React/Screens/Player/Reproduction"; import * as ReactDOM from "react-dom"; declare var smartformsrecordingviewparams:any; declare let smartformsrecordingparams:any; export class ReproductionPublic extends React.Component{ constructor(){ super(); this.state={ HeaderItems:[], Summary:null }; } render(){ return(
); } } jQuery(()=>{ ReactDOM.render(,document.getElementById('reproduction')); }); //