PHP Classes

File: assets/js/pages/aboutPage.js

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Simple SPA   assets/js/pages/aboutPage.js   Download  
File: assets/js/pages/aboutPage.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple SPA
Demonstrates single page applications
Author: By
Last change:
Date: 17 days ago
Size: 930 bytes
 

Contents

Class file image Download
import Component from '../component/Component.js'; class AboutPage extends Component { constructor() { super(); this.title = 'Sobre - Meu SPA'; this.description = `Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.`; this.keywords = 'sobre,nós,equipe,história'; } render() { return `<div>${this.description}</div>`; } } export default AboutPage;