mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
17 lines
358 B
JavaScript
Executable File
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 />
|
|
} |