mirror of
https://github.com/wasp-lang/wasp.git
synced 2025-01-01 21:52:28 +03:00
18 lines
339 B
JavaScript
Generated
18 lines
339 B
JavaScript
Generated
app waspMigrate {
|
|
wasp: {
|
|
version: "^0.11.3"
|
|
},
|
|
title: "waspMigrate"
|
|
}
|
|
|
|
route RootRoute { path: "/", to: MainPage }
|
|
page MainPage {
|
|
component: import Main from "@client/MainPage.jsx"
|
|
}
|
|
entity Task {=psl
|
|
id Int @id @default(autoincrement())
|
|
description String
|
|
isDone Boolean @default(false)
|
|
psl=}
|
|
|