Files
contact-book/ContactBook.package/WAContactBook.class/instance/renderContentOn..st
2018-05-12 15:25:36 +02:00

11 lines
202 B
Smalltalk

rendering
renderContentOn: html
html tbsContainer: [
html heading
level: 1;
with: 'My Contact Book'.
html tbsForm: [
self renderContactsOn: html.
self renderGlobalButtonsOn: html
]
]