Ruby on Rails - html tags in ruby on rails- ruby on rails tutorial - rails guides - rails tutorial - ruby rails
HTML Tags
Example
# HTML tags are built in and are UPCASE
class HTMLExample < Hyperloop::Component
render do
DIV do
SPAN { "Hello There" }
SPAN { "Welcome to the Machine!" }
end
end
end