Skip to content

Instantly share code, notes, and snippets.

@ysfzrn
Created October 2, 2017 07:29
Show Gist options
  • Save ysfzrn/526ba9cee0272c276db92b8e4bdebbeb to your computer and use it in GitHub Desktop.
Save ysfzrn/526ba9cee0272c276db92b8e4bdebbeb to your computer and use it in GitHub Desktop.
...
<Board>
{snake.map((segment, i) => {
return <Segment key={segment.id} id={segment.id} x={segment.x} y={segment.y} />;
})}
<Food x={ gameStore.food.x } y={ gameStore.food.y }/>
</Board>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment