You've already forked element-web
mirror of
https://github.com/element-hq/element-web.git
synced 2025-11-28 09:24:05 +03:00
test component index and stub component
This commit is contained in:
11
test/components/stub-component.js
Normal file
11
test/components/stub-component.js
Normal file
@@ -0,0 +1,11 @@
|
||||
/* A dummy React component which we use for stubbing out app-level components
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var React = require('react');
|
||||
|
||||
module.exports = React.createClass({
|
||||
render: function() {
|
||||
return <div />;
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user