catarse/catarse.js

View on GitHub
legacy/src/root/team.js

Summary

Maintainability
A
0 mins
Test Coverage
import m from 'mithril';
import teamTotal from '../c/team-total';
import teamMembers from '../c/team-members';

const team = {
    view: function() {
        return m('#static-team-app', [
            m('.w-section.hero-who.hero-full', [
                m('.w-container.u-text-center', [
                    m('img.icon-hero[src="https://catarse.me/assets/logo-yellow.png"]'),
                    m('.u-text-center.u-marginbottom-20.fontsize-largest',
                      'ConheƧa nosso time')
                ])
            ]),
            m(teamTotal),
            m(teamMembers)
        ]);
    }
};

export default team;