Skip to content

Commit

Permalink
add server
Browse files Browse the repository at this point in the history
  • Loading branch information
andybons committed Dec 4, 2019
1 parent b847de3 commit b2099d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions cmd/serve/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package main

func main() {
println("server!")
}
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ISSUE_DATA } from './data.js';
import { useState, useEffect } from 'preact/hooks';

const AttendeeList = ({ attendees, addAttendee, removeAttendee }) => {
const members = ['@andybons', '@bradfitz', '@ianlancetaylor', '@rsc', '@spf13', '@griesemer'];
const members = ['@andybons', '@bradfitz', '@griesemer', '@ianlancetaylor', '@rsc', '@spf13'];
return (
<>
<h2>Attendees</h2>
Expand Down Expand Up @@ -229,7 +229,7 @@ export default function App() {
const [selectedIssues, setSelectedIssues] = useLocalState(
'selectedIssues',
StoreType.SET,
new Set()
new Set(),
);

const addSelectedIssue = issue => {
Expand Down

0 comments on commit b2099d9

Please sign in to comment.