cover/Elixir.DaProductAppWeb.Layouts.html

1
:-(
defmodule DaProductAppWeb.Layouts do
2 @moduledoc """
3 This module holds different layouts used by your application.
4
5 See the `layouts` directory for all templates available.
6 The "root" layout is a skeleton rendered as part of the
7 application router. The "app" layout is set as the default
8 layout on both `use DaProductAppWeb, :controller` and
9 `use DaProductAppWeb, :live_view`.
10 """
11 use DaProductAppWeb, :html
12 import DaProductAppWeb.NavbarComponent
13 import DaProductAppWeb.SidebarComponent
14
15 embed_templates "layouts/*"
16 end
Line Hits Source