comty/packages/app/src/pages/[param].jsx
2023-01-12 20:24:15 +00:00

17 lines
358 B
JavaScript
Executable File

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