test component index and stub component
This commit is contained in:
parent
fcc82fbd27
commit
e099aa9ce0
2 changed files with 29 additions and 0 deletions
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 />;
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue