#!/usr/bin/env node

/**
 * Bud file for page components.
 * One html document has only one page component.
 *
 * 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.page([
    // Name of components to render
    'Index',
    'Other'
]).concat(
    // Render index
    apemanBudReact.index(__dirname)
);

{{{read _render}}}
