This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d8587e
commit 14fdf7d
Showing
4 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,6 @@ storybook-static | |
lib | ||
suir.stories.js | ||
styleguide | ||
|
||
*.iml | ||
*.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Full screen modal dialog with close button | ||
|
||
const Modal = require('semantic-ui-react').Modal; | ||
const Header = require('semantic-ui-react').Header; | ||
const Button = require('semantic-ui-react').Button; | ||
|
||
<Modal size='fullscreen' trigger={<Button>Show Modal</Button>} closeIcon='close'> | ||
<Modal.Header>Select a Photo</Modal.Header> | ||
<Modal.Content> | ||
<Modal.Description> | ||
<Header>Default Profile Image</Header> | ||
<p>We've found the following gravatar image associated with your e-mail address.</p> | ||
<p>Is it okay to use this photo?</p> | ||
</Modal.Description> | ||
</Modal.Content> | ||
</Modal> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import Modal from 'semantic-ui-react/dist/commonjs/modules/Modal' | ||
export default Modal |