mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-27 02:12:54 +03:00
13 lines
197 B
JavaScript
13 lines
197 B
JavaScript
|
/** @constructor */
|
||
|
function Page(title) {
|
||
|
this.parts = {
|
||
|
title: title,
|
||
|
body: {
|
||
|
/** document me */
|
||
|
heading: '',
|
||
|
main: ''
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|