This file contains hidden or 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 is a simplified version of the SetPageEmbedModal component hierarchy | |
<UIModal> | |
<UIParagraph>Select a study mode...</UIParagraph> | |
<UIRow> | |
<UIDropdown>{options}</UIDropdown> | |
<UIButton>Copy HTML</UIButton> | |
</UIRow> | |
<UIRow> | |
<UITextarea /> | |
</UIRow> |
This file contains hidden or 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
<div> | |
This is text with <UILink to="/">an inline link</UILink>. | |
This is text with <UILink newTab={true} to="https://google.com">an external link</UILink>. | |
This is text with <UILink onClick={() => alert('Hello World!')}>an <UICode>onClick</UICode> handler</UILink>. | |
This is text with <UILink disabled={true}>a disabled link</UILink>. | |
</div> |