spee.ch/react/components/thumbnailInput.jsx

14 lines
211 B
React
Raw Normal View History

2018-01-04 23:14:03 +01:00
import React from 'react';
class ThumbnailInput extends React.Component {
render () {
return (
<div>
<h3>thumbnail component</h3>
</div>
);
}
}
module.exports = ThumbnailInput;