mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-10 09:02:50 +00:00
22 lines
474 B
TypeScript
22 lines
474 B
TypeScript
import React from 'react';
|
|
import { RouteComponentProps } from 'react-router-dom';
|
|
import { ContentContainer } from '../../components';
|
|
import { UserService } from '../../services';
|
|
|
|
interface Props extends RouteComponentProps<any> {}
|
|
|
|
interface State {}
|
|
|
|
export class UserAccount extends React.Component<Props, State> {
|
|
|
|
componentDidMount() {
|
|
console.log(UserService.getUser());
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<ContentContainer></ContentContainer>
|
|
);
|
|
}
|
|
}
|