wasp/stic/test/Parser/valid.wasp

22 lines
333 B
Plaintext
Raw Normal View History

2019-04-19 16:22:14 +03:00
// Test .wasp file.
// App definition.
2019-04-19 16:22:14 +03:00
app test_app {
// Title of the app.
title: "Hello World!"
}
// Page definition.
page Landing {
route: "/home",
content: {=jsx
<div>My landing page! {Tasks.count}</div>
jsx=}
}
2019-05-09 23:05:59 +03:00
// Entity definition.
entity Task {
description :: string,
isDone :: boolean
}