# auto_register: false

require “slim” require “dry/view” require “<%= config %>/<%= config %>/container”

module <%= config %>

module <%= config[:camel_cased_app_name] %>
  class View < Dry::View
    configure do |config|
      config.paths = [Container.root.join("web/templates")]
      config.default_context = Container["view_context"]
      config.layout = "application"
    end
  end
end

end