Skip to content

Instantly share code, notes, and snippets.

@giuseppeg
Last active August 29, 2015 14:20
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 giuseppeg/052e99b3a5cca61b6579 to your computer and use it in GitHub Desktop.
Save giuseppeg/052e99b3a5cca61b6579 to your computer and use it in GitHub Desktop.
contextualize component
<div class="Header">
render_component('Button', {
href: '/blog'
},
[ /* contextual styles (array of utility classes) */
'u-size-1',
'u-space-2-top'
]
)
</div>
/* renders */
<div class="Header">
<a href="/blog" class="Button u-size-1 u-space-2-top">blog</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment