File tree Expand file tree Collapse file tree 6 files changed +7
-4
lines changed Expand file tree Collapse file tree 6 files changed +7
-4
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ RadioButton : require ( './radio_button' ) ,
3
+ RadioGroup : require ( './radio_group' )
4
+ } ;
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
- import RadioGroup from '../../components/radio_group' ;
3
- import RadioButton from '../../components/radio_button' ;
2
+ import { RadioGroup , RadioButton } from '../../components/radio' ;
4
3
5
4
export default React . createClass ( {
6
5
handleChange ( event , instance ) {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import List from './components/list';
15
15
import Menu from './components/menu' ;
16
16
import Pickers from './components/pickers' ;
17
17
import Progress from './components/progress' ;
18
- import RadioGroup from './components/radio_group ' ;
18
+ import Radio from './components/radio ' ;
19
19
import Snackbar from './components/snackbar' ;
20
20
import Slider from './components/slider' ;
21
21
import Switch from './components/switch' ;
@@ -40,7 +40,7 @@ const App = () => {
40
40
< Menu />
41
41
< Pickers />
42
42
< Progress />
43
- < RadioGroup />
43
+ < Radio />
44
44
< Slider />
45
45
< Snackbar />
46
46
< Switch />
You can’t perform that action at this time.
0 commit comments