Skip to content

Instantly share code, notes, and snippets.

@alanbsmith
Created May 15, 2016 02: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 alanbsmith/f5ffcac46cde466c581c50c3c11c37af to your computer and use it in GitHub Desktop.
Save alanbsmith/f5ffcac46cde466c581c50c3c11c37af to your computer and use it in GitHub Desktop.
require 'json'
module ReactHelper
def react_component(component_name, props = {})
content_tag(
:div,
nil,
class: 'react-component-target',
data: {
react_class: component_name,
react_props: props.to_json
}
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment