comfycamp/lib/comfycamp_web/controllers/cinema_html.ex

13 lines
228 B
Elixir
Raw Normal View History

defmodule ComfycampWeb.CinemaHTML do
@moduledoc """
This module contains pages rendered by CinemaController.
"""
use ComfycampWeb, :html
def index(assigns) do
~H"""
<p>Кинотеатр</p>
"""
end
end