1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 01:22:49 +00:00

cache character end point - update reply count/thread reply id

This commit is contained in:
2018-01-09 23:24:09 -06:00
parent 2d6ff0875f
commit d3d3bef9a5
17 changed files with 226 additions and 22 deletions

View File

@@ -0,0 +1,25 @@
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>
);
}
}