#!/usr/bin/env node

/**
 * Bud file for view components.
 * Each view has content to cover all screen.
 * A single page can have multiple views.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{pkg.name}}.
 *
 * @see https://github.com/coz-repo/coz
 */

"use strict";

const apemanBudReact = require('apeman-bud-react');

module.exports = apemanBudReact.view([
    // Render components
    'splash/SplashTop',
    'other/OtherTop'
]).concat(
    // Render index
    apemanBudReact.index(__dirname)
);

{{{read _render}}}
