File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,15 @@ import PageHeaderSection from './pages/PageHeaderSection';
3030import PicklistSection from './pages/PicklistSection' ;
3131import TooltipSection from './pages/TooltipSection' ;
3232
33+ import Playground from './pages/Playground' ;
34+
3335const routes = (
3436 < Route name = "home" path = "/" handler = { HomePage } >
3537 < DefaultRoute handler = { Welcome } />
3638
39+ < Route name = "playground" path = "playground" handler = { Playground } />
40+
41+
3742 < Route name = "welcome" path = "welcome" handler = { Welcome } />
3843 < Route name = "getting-started" path = "getting-started" handler = { GettingStarted } />
3944 < Route name = "breadcrumb" path = "breadcrumb" handler = { BreadCrumbSection } />
Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+ import Router from 'react-router' ;
3+ const { Link } = Router ;
4+ import GlobalVariables from 'demo/docs/globalVariables' ;
5+
6+
7+ module . exports = React . createClass ( {
8+ render ( ) {
9+ return (
10+ < section className = "copy-text" style = { { "maxWidth" : "800px" } } >
11+ < h1 className = 'slds-text-heading--large' >
12+ Playground!
13+ </ h1 >
14+ </ section >
15+ ) ;
16+ }
17+ } ) ;
You can’t perform that action at this time.
0 commit comments