mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
7 lines
103 B
JavaScript
7 lines
103 B
JavaScript
const Server = ({ router: { query: { id } } }) => (
|
|
<div>
|
|
{id}
|
|
</div>
|
|
)
|
|
|
|
export default Server
|