11import  React ,  {  useState  }  from  'react' ; 
22import  elements  from  './elements/elements' ; 
3- import  ButtonPage  from  './elements/button/ButtonPage.jsx' ; 
4- import  TagPage  from  './elements/tag/TagPage.jsx' ; 
5- import  CheckboxPage  from  './elements/checkbox/CheckboxPage.jsx' ; 
6- import  InputPage  from  './elements/input/InputPage.jsx' ; 
7- import  NumberInputPage  from  './elements/numberinput/NumberInputPage.jsx' ; 
8- import  ListPage  from  './elements/list/ListPage.jsx' ; 
3+ import  ButtonPage  from  './elements/button/ButtonPage' ; 
4+ import  TagPage  from  './elements/tag/TagPage' ; 
5+ import  CheckboxPage  from  './elements/checkbox/CheckboxPage' ; 
6+ import  InputPage  from  './elements/input/InputPage' ; 
7+ import  NumberInputPage  from  './elements/numberinput/NumberInputPage' ; 
8+ import  ListPage  from  './elements/list/ListPage' ; 
9+ import  RadioPage  from  './elements/radio/RadioPage' ; 
910import  './base_bundle_entry.scss' ; 
1011
1112/* TODO: remove this import, the css itself and the icont font files, 
@@ -53,12 +54,11 @@ function App() {
5354            ) ) } 
5455          </ div > 
5556          < div 
56-             className = "zep-grid__col zep-grid__col--9-12 " 
57+             className = "zep-grid__col zep-grid__col--xs-5-6 " 
5758            style = { {  paddingTop : 45  } } 
5859          > 
5960            { content  ===  'welcome'  &&  ( 
60-               // <p>Welcome to the Zeppelin Element Library</p> 
61-               < ListPage  /> 
61+               < p > Welcome to the Zeppelin Element Library</ p > 
6262            ) } 
6363            { content  ===  'button'  &&  < ButtonPage  /> } 
6464            { content  ===  'tabs'  &&  < p > This element is not ready</ p > } 
@@ -67,19 +67,7 @@ function App() {
6767            { content  ===  'input'  &&  < InputPage  /> } 
6868            { content  ===  'numberInput'  &&  < NumberInputPage  /> } 
6969            { content  ===  'list'  &&  < ListPage  /> } 
70-           </ div > 
71-         </ div > 
72-         < div  className = "zep-grid__row--cards" > 
73-           < div 
74-             className = "zep-grid__col--cards zep-grid__col--cards-2-3" 
75-             style = { {  paddingTop : 45  } } 
76-           > 
77-             { content  ===  'welcome'  &&  ( 
78-               < p > Welcome to the Zeppelin Element Library</ p > 
79-             ) } 
80-             { content  ===  'button'  &&  < ButtonPage  /> } 
81-             { content  ===  'tabs'  &&  < p > This element is not ready</ p > } 
82-             { content  ===  'tag'  &&  < TagPage  /> } 
70+             { content  ===  'radio'  &&  < RadioPage  /> } 
8371          </ div > 
8472        </ div > 
8573      </ div > 
0 commit comments