Created SlideshowPicker components.
This commit is contained in:
parent
a041941a70
commit
09a920f3b3
3
src/components/PickerItem/PickerItem.css
Normal file
3
src/components/PickerItem/PickerItem.css
Normal file
@ -0,0 +1,3 @@
|
||||
.picker {
|
||||
|
||||
}
|
12
src/components/PickerItem/PickerItem.js
Normal file
12
src/components/PickerItem/PickerItem.js
Normal file
@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import './PickerItem.css';
|
||||
|
||||
const PickerItem = () => {
|
||||
return (
|
||||
<div className="picker">
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default PickerItem;
|
3
src/components/SlideshowPicker/SlideshowPicker.css
Normal file
3
src/components/SlideshowPicker/SlideshowPicker.css
Normal file
@ -0,0 +1,3 @@
|
||||
.container {
|
||||
|
||||
}
|
12
src/components/SlideshowPicker/SlideshowPicker.js
Normal file
12
src/components/SlideshowPicker/SlideshowPicker.js
Normal file
@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import './SlideshowPicker.css';
|
||||
|
||||
const SlideshowPicker = () => {
|
||||
return (
|
||||
<div className="container">
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default SlideshowPicker;
|
Loading…
Reference in New Issue
Block a user