This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Description
The following doesn't appear to work.
class LoadingComponent < Hyperloop::Component
render do
DIV do
'Loading...'
end
end
end
class MainComponent < Hyperloop::Router::Component
render do
FORM do
INPUT(defaultValue: User.find_by_first_name('Lily').last_name)
end
.while_loading do
LoadingComponent {}
end
end
end
Appears to have something to do with an INPUT's defaultValue.