trc-client-core
Version:
The core of the TRC Client
19 lines (15 loc) • 454 B
JSX
import React from 'react';
import {getAutoUpload} from 'trc-client-core/src/admin/AdminActions';
import ErrorMessage from 'trc-client-core/src/components/ErrorMessage';
var AutoUploadView = React.createClass({
displayName: 'AutoUploadView',
componentDidMount: function () {
getAutoUpload();
},
render: function () {
return (
<ErrorMessage code={202} />
);
}
});
module.exports = AutoUploadView;