mirror of
https://github.com/mgerb/ps-launcher
synced 2026-01-10 02:22:49 +00:00
coming along well - electron is pretty nice
This commit is contained in:
24
app/components/ServerList/ServerList.tsx
Normal file
24
app/components/ServerList/ServerList.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user