mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
16 lines
375 B
Elixir
16 lines
375 B
Elixir
<div data-game-id="<%= @game.id %>">
|
|
<div class="game-grid">
|
|
<%= live_render(
|
|
@conn,
|
|
ChessWeb.BoardLive,
|
|
session: %{"user_id" => current_user(@conn).id, "game_id" => @game.id}
|
|
) %>
|
|
|
|
<%= live_render(
|
|
@conn,
|
|
ChessWeb.GameInfoLive,
|
|
session: %{"user_id" => current_user(@conn).id, "game_id" => @game.id}
|
|
) %>
|
|
</div>
|
|
</div>
|