为react路由增加腾讯公益404页面

868 阅读1分钟

看多了个中各样的404,加入公益活动【虽然腾讯吃相很难看】。


import React, {Component} from "react";

class Page404 extends Component<any, any> {


    componentDidMount() {
        let script = document.createElement('script');
        script.type = 'text/javascript';
        script.src = `//qzonestyle.gtimg.cn/qzone/hybrid/app/404/search_children.js`;
        script.setAttribute('homePageUrl', '/')
        script.setAttribute('homePageName', '返回首页')
        document.getElementsByTagName('head')[0].appendChild(script);
    }
    render() {
        return (
            <>
            </>
        );
    }
}

export default Page404