wasp/stic/test/Parser/valid.wasp

16 lines
223 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: {
<div>My landing page!</div>
}
}