mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-12 10:02:49 +00:00
26 lines
517 B
TypeScript
26 lines
517 B
TypeScript
import React from 'react';
|
|
import { RouteComponentProps } from 'react-router-dom';
|
|
import { ThreadService } from '../../services';
|
|
|
|
interface Props extends RouteComponentProps<any> {}
|
|
|
|
interface State {}
|
|
|
|
export class Thread extends React.Component<Props, State> {
|
|
|
|
componentDidMount() {
|
|
this.getThreads();
|
|
}
|
|
|
|
private async getThreads() {
|
|
const thread = await ThreadService.getThread(this.props.match.params['id']);
|
|
console.log(thread);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div></div>
|
|
);
|
|
}
|
|
}
|