To represent continious signals, reactive-banana features Behavior a type. Unlike Event, a Behavior is an Applicative, which lets you combine n Behaviors using an n-ary pure function (using <$> and <*>).
To obtain a Behavior a from the Event a there is accumE function:
main = do
(...