-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frontend): add variable set help info (#3707)
- Loading branch information
Showing
5 changed files
with
31 additions
and
8 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
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,19 @@ | ||
import {Typography} from 'antd'; | ||
import {VARIABLE_SET_DOCUMENTATION_URL} from 'constants/Common.constants'; | ||
import * as S from './VariableSetModal.styled'; | ||
|
||
const Tip = () => ( | ||
<S.TipContainer> | ||
<Typography.Title level={3}>💡 What are Variable Sets?</Typography.Title> | ||
<Typography.Paragraph> | ||
<Typography.Text type="secondary"> | ||
{`Variable sets are groups of variables that can be referenced by tests using this syntax: http://\${var:HOSTNAME}/api/users. `} | ||
</Typography.Text> | ||
<Typography.Link href={VARIABLE_SET_DOCUMENTATION_URL} target="_blank"> | ||
Read more | ||
</Typography.Link> | ||
</Typography.Paragraph> | ||
</S.TipContainer> | ||
); | ||
|
||
export default Tip; |
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