mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-10 09:02:50 +00:00
21 lines
346 B
TypeScript
21 lines
346 B
TypeScript
import React from 'react';
|
|
import { ContentContainer } from '../../components';
|
|
|
|
interface Props {}
|
|
|
|
interface State {}
|
|
|
|
export class Realms extends React.Component<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<ContentContainer>
|
|
{/* TODO: */}
|
|
</ContentContainer>
|
|
);
|
|
}
|
|
}
|