import React, {Component} from "react"; import "../common.css"; class Document extends Component { handleClick = () => { const w = window.open("about:blank"); w.location.href = "https://doc.luckday.cn"; }; render() { return (
); } } export default Document;