blob: a17a20227cdd835622fae463939913095591c4f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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 (
<div>
<h1>{user}</h1>
<p>{mid}</p>
</div>
);
}
}
|