Update blank screens to use grid layout by default

This commit is contained in:
Andrew Kingston 2024-08-15 10:44:42 +01:00
parent 7ae21460f8
commit a022e02643
No known key found for this signature in database
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,11 @@
import { Screen } from "./Screen"
const blankScreen = route => {
return new Screen().instanceName("New Screen").route(route).json()
return new Screen()
.instanceName("New Screen")
.customProps({ layout: "grid" })
.route(route)
.json()
}
export default blankScreen