mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-18 06:54:15 +00:00
8 lines
180 B
JavaScript
Executable File
8 lines
180 B
JavaScript
Executable File
import React from "react"
|
|
import Account from "./index.mobile"
|
|
|
|
export default (props) => {
|
|
const username = props.params.username
|
|
|
|
return <Account username={username} />
|
|
} |