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