1
0
mirror of https://github.com/mgerb/ps-launcher synced 2026-01-11 19:02:50 +00:00

coming along well - electron is pretty nice

This commit is contained in:
2017-10-17 23:01:08 -05:00
parent 3f49700225
commit c4e028d102
29 changed files with 424 additions and 199 deletions

View File

@@ -0,0 +1,7 @@
@import '../../scss/variables.scss';
.server-list {
background: darken($dark-blue, 1%);
width: 200px;
border-right: 1px solid $dark-blue--3;
}

View 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>
);
}
}