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';
30
30
import PicklistSection from './pages/PicklistSection' ;
31
31
import TooltipSection from './pages/TooltipSection' ;
32
32
33
+ import Playground from './pages/Playground' ;
34
+
33
35
const routes = (
34
36
< Route name = "home" path = "/" handler = { HomePage } >
35
37
< DefaultRoute handler = { Welcome } />
36
38
39
+ < Route name = "playground" path = "playground" handler = { Playground } />
40
+
41
+
37
42
< Route name = "welcome" path = "welcome" handler = { Welcome } />
38
43
< Route name = "getting-started" path = "getting-started" handler = { GettingStarted } />
39
44
< 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