import React from "react" import { Result } from "antd" export default (props) => { const entryParam = props.params.param if (entryParam.startsWith("@")) { const username = entryParam.replace("@", "") window.app.location.push(`/account/${username}`, { state: { "noTransition": true, } }) } return }