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

8 lines
167 B
JavaScript
Executable File

import React from "react"
import Account from "."
export default (props) => {
const username = props.params.username
return <Account username={username} />
}