comfycamp/lib/comfycamp_web/controllers/cinema_html.ex
2024-08-25 23:58:22 +05:00

13 lines
228 B
Elixir

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