mirror of
https://github.com/konvajs/konva.git
synced 2025-10-15 12:34:52 +08:00
13 lines
197 B
JavaScript
13 lines
197 B
JavaScript
/** @constructor */
|
|
function Page(title) {
|
|
this.parts = {
|
|
title: title,
|
|
body: {
|
|
/** document me */
|
|
heading: '',
|
|
main: ''
|
|
}
|
|
};
|
|
}
|
|
|