20 lines
370 B
Text
20 lines
370 B
Text
|
|
let title = "Dashboard"
|
||
|
|
let active = "Analytics"
|
||
|
|
|
||
|
|
layout dashboard {
|
||
|
|
sidebar.x == 0
|
||
|
|
sidebar.y == 0
|
||
|
|
sidebar.width == 250
|
||
|
|
sidebar.height == parent.height
|
||
|
|
main.x == sidebar.width
|
||
|
|
main.y == 0
|
||
|
|
main.width == parent.width - sidebar.width
|
||
|
|
main.height == parent.height
|
||
|
|
}
|
||
|
|
|
||
|
|
view main = column [
|
||
|
|
text title
|
||
|
|
text "Welcome to DreamStack Dashboard"
|
||
|
|
text active
|
||
|
|
]
|