"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = (page) => `
module Pages.${page.join('.')} exposing (view)
import View exposing (View)
view : View msg
view =
View.placeholder "${page.join('.')}"
`.trimLeft();