This commit is contained in:
benbot 2023-10-25 03:58:10 -04:00
parent 6a258db47f
commit beaf92f7c4
22 changed files with 773 additions and 238 deletions

View file

@ -0,0 +1,19 @@
defmodule EzcontainerRailwayWeb.ContainerController do
alias Phoenix.Component
use EzcontainerRailwayWeb, :controller
def index(conn, params) do
form = Component.to_form(%{"container_name" => "", "container_tag" => ""})
conn
|> assign(:form, form)
|> render(:make_container, layout: false)
end
def create(conn, params) do
end
def show(conn, params) do
end
end