// Test .wasp file. // App definition. app test_app { // Title of the app. title: "Hello World!" } // Page definition. page Landing { route: "/home", content: {=jsx
My landing page! {Tasks.count}
jsx=} } // Entity definition. entity Task { description :: string, isDone :: boolean }