import React from 'react' import StateLink from '../../src/components/StateLink' export default class User extends React.Component<{ id: string }> { render() { const {id} = this.props const nextUserId = Math.random().toString(32).substring(2) return (

Showing a lot of information about user #{id}

Go to user #{nextUserId}

Show profile

) } }