import "whatwg-fetch" import React from "react" export default class Thread extends React.Component { constructor(props) { super(props); this.state = { replies: [], loading: false } } componentDidMount() { } render() { const { user, mid } = this.props.match.params; return (

{user}

{mid}

) } }