This is the personal HP of Georg Hopp aka Steffers. Yes I know... nobody make personal HPs in the times of social networks. Well, I do!
web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
259 B

import React from 'react';
import ReactDOM from 'react-dom';
import Page from './Page';
var page = document.createElement("div")
ReactDOM.render(<Page />, page);
document.body.replaceChild(
page.querySelector("#page"),
document.getElementById("content"));