mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-18 03:12:40 +00:00
12 lines
305 B
Haskell
Executable file
12 lines
305 B
Haskell
Executable file
#!/usr/bin/env stack
|
|
-- stack runghc --package reanimate
|
|
module Main (main) where
|
|
|
|
import Reanimate
|
|
import Reanimate.Builtin.Documentation
|
|
import Reanimate.Builtin.Images
|
|
|
|
main :: IO ()
|
|
main = reanimate $ staticFrame 1 $ mkGroup
|
|
[ mkBackground "grey"
|
|
, githubWhiteIcon ]
|