mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-10 09:02:50 +00:00
added client things - finished home page
This commit is contained in:
20
client/app/pages/realms/realms.tsx
Normal file
20
client/app/pages/realms/realms.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user