comty/packages/app/src/pages/[param].jsx
2023-04-04 23:53:51 +00:00

22 lines
500 B
JavaScript
Executable File

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.setLocation(`/account/${username}`, {
state: {
"noTransition": true,
}
})
}
return <Result
status="404"
title="404"
subTitle="Sorry, the page you visited does not exist."
/>
}