// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. // See License.txt for license information. module.exports = React.createClass({ displayName: "LoadingScreen", propTypes: { position: React.PropTypes.oneOf(['absolute', 'fixed', 'relative', 'static', 'inherit']) }, getDefaultProps: function() { return { position: 'relative' }; }, render: function() { return (

Loading

); } });