mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-11 17:42:48 +00:00
19 lines
385 B
TypeScript
19 lines
385 B
TypeScript
import React from 'react';
|
|
import { RouteComponentProps } from 'react-router-dom';
|
|
import { ContentContainer } from '../../components';
|
|
|
|
interface Props extends RouteComponentProps<any> {}
|
|
|
|
interface State {}
|
|
|
|
export class UserAccount extends React.Component<Props, State> {
|
|
|
|
componentDidMount() {}
|
|
|
|
render() {
|
|
return (
|
|
<ContentContainer></ContentContainer>
|
|
);
|
|
}
|
|
}
|