Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Created March 11, 2017 20:09
Show Gist options
  • Select an option

  • Save viniciusdacal/9d57df679a4146183b15cf018a550d11 to your computer and use it in GitHub Desktop.

Select an option

Save viniciusdacal/9d57df679a4146183b15cf018a550d11 to your computer and use it in GitHub Desktop.
import React from 'react';
import Button from './Button'
const GroupButton = ({ children}) => (
<div className='btn-group'>
{children}
</div>
);
ReactDOM.render(
<GroupButton>
<Button>Left</Button>
<Button>Middle</Button>
<Button>Right</Button>
</GroupButton>
,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment