File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
packages/app/src/app/pages/Sandbox/Editor/Header Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import Media from 'react-media';
55import Save from 'react-icons/lib/md/save' ;
66import SearchIcon from 'react-icons/lib/go/search' ;
77import Fork from 'react-icons/lib/go/repo-forked' ;
8+ import FlameIcon from 'react-icons/lib/go/flame' ;
89import Download from 'react-icons/lib/md/file-download' ;
910import PlusIcon from 'react-icons/lib/go/plus' ;
1011import GithubIcon from 'react-icons/lib/go/mark-github' ;
@@ -14,7 +15,12 @@ import SettingsIcon from 'react-icons/lib/md/settings';
1415import ShareIcon from 'react-icons/lib/md/share' ;
1516import InfoIcon from 'app/pages/Sandbox/Editor/Navigation/InfoIcon' ;
1617
17- import { patronUrl , dashboardUrl , searchUrl } from 'common/utils/url-generator' ;
18+ import {
19+ patronUrl ,
20+ dashboardUrl ,
21+ searchUrl ,
22+ exploreUrl ,
23+ } from 'common/utils/url-generator' ;
1824
1925import PatronBadge from '-!svg-react-loader!common/utils/badges/svg/patron-4.svg' ; // eslint-disable-line import/no-webpack-loader-syntax
2026import Margin from 'common/components/spacing/Margin' ;
@@ -142,6 +148,13 @@ const Header = ({ store, signals }) => {
142148 }
143149 </ Media >
144150
151+ < Action
152+ tooltip = "Explore Sandboxes"
153+ Icon = { FlameIcon }
154+ href = { exploreUrl ( ) }
155+ a
156+ />
157+
145158 { store . updateStatus === 'available' && (
146159 < Action
147160 onClick = { ( ) => document . location . reload ( ) }
You can’t perform that action at this time.
0 commit comments