mirror of
https://github.com/jtdaugherty/brick.git
synced 2024-12-12 12:23:21 +03:00
13 lines
207 B
Haskell
13 lines
207 B
Haskell
|
module Main where
|
||
|
|
||
|
import Brick
|
||
|
|
||
|
ui :: Widget ()
|
||
|
ui = vBox [ str "This text is at the top."
|
||
|
, fill ' '
|
||
|
, str "This text is at the bottom."
|
||
|
]
|
||
|
|
||
|
main :: IO ()
|
||
|
main = simpleMain ui
|