Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(Dropdown|Select|Visibility): remove imports, use faker and components #3486

Merged
merged 4 commits into from
Mar 10, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix floating example
  • Loading branch information
layershifter committed Mar 10, 2019
commit 32f44c21501912fa645fb934ec8c39cb7e816aec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ const options = [
const DropdownExampleFloating = () => (
<Button.Group color='teal'>
<Button>Save</Button>
<Dropdown options={options} floating button className='icon' />
<Dropdown
as={Button}
className='icon'
floating
options={options}
trigger={<React.Fragment />}
/>
</Button.Group>
)

Expand Down