Skip to content

Instantly share code, notes, and snippets.

@braidn
Created December 27, 2016 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braidn/3ccd47e2d6f29ba83a8715505be679f4 to your computer and use it in GitHub Desktop.
Save braidn/3ccd47e2d6f29ba83a8715505be679f4 to your computer and use it in GitHub Desktop.
module Components
module Home
class Welcome < React::Component::Base # :nodoc:
param :title, type: String
def render
h1 { "Welcome to #{params.title}!" }
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment