mirror of
https://github.com/mgerb/ps-launcher
synced 2026-01-09 01:52:57 +00:00
25 lines
447 B
TypeScript
25 lines
447 B
TypeScript
import React from 'react';
|
|
import { inject, observer } from 'mobx-react';
|
|
import { AppState } from '../../state/AppState';
|
|
|
|
import './ServerList.scss';
|
|
|
|
interface Props {
|
|
AppState?: AppState;
|
|
}
|
|
|
|
@inject('AppState')
|
|
@observer
|
|
export class ServerList extends React.Component<Props, any> {
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
}
|
|
|
|
public render(): any {
|
|
return (
|
|
<div className="server-list">Server list</div>
|
|
);
|
|
}
|
|
}
|