From 9001fbbdd2611d4ef04826f733bd41f153b1850a Mon Sep 17 00:00:00 2001 From: nelsonic Date: Sun, 13 Mar 2022 15:37:06 +0000 Subject: [PATCH] 4. Create app_view.ex and add essential code #53 --- lib/app_web/views/app_view.ex | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lib/app_web/views/app_view.ex diff --git a/lib/app_web/views/app_view.ex b/lib/app_web/views/app_view.ex new file mode 100644 index 0000000..8584438 --- /dev/null +++ b/lib/app_web/views/app_view.ex @@ -0,0 +1,3 @@ +defmodule AppWeb.AppView do + use AppWeb, :view +end \ No newline at end of file