Add component to either host or join a game.

This commit is contained in:
Oliver-Akins 2020-09-19 17:13:23 -06:00
parent 810ea4f677
commit 04958febfa

View file

@ -0,0 +1,34 @@
<template>
<div id="game_code_entry">
<h1>
Secret Hitler Online
</h1>
<div>
<button>Join</button>
<button>Host</button>
</div>
</div>
</template>
<script>
export default {
name: 'JoinHost',
components: {},
data() {return {
players: []
}},
methods: {},
}
</script>
<style lang="stylus">
@import "../theme.styl"
</style>
<style lang="stylus" scoped>
@import "../theme.styl"
button {
width: 100%
margin: 5px
}
</style>