Skip to content

Instantly share code, notes, and snippets.

@ollelauribostrom
Created June 5, 2018 22:26
Show Gist options
  • Save ollelauribostrom/06c9f566a1adfc4757536182c142ab18 to your computer and use it in GitHub Desktop.
Save ollelauribostrom/06c9f566a1adfc4757536182c142ab18 to your computer and use it in GitHub Desktop.
import * as React from 'react';
export function Box({ customClassName, label }) {
return (
<div className={`box ${customClassName}`}>
{label}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment