Skip to content

Commit

Permalink
Add stubs for missing root components (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrewML authored and Andrew Levine committed Jun 13, 2018
1 parent cc93ec9 commit f0bc33d
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { createElement, Component } from 'react';

export default class CMS extends Component {
render() {
return <div>CMS Page Stub</div>;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* @RootComponent
* description = 'Basic CMS Page'
* pageTypes = CMS_PAGE
*/

export { default } from './CMS';
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @RootComponent
* description = 'Basic Category Page Implementation'
* pageTypes = catalog_category_view
* description = 'Basic Category Page'
* pageTypes = CATEGORY
*/
export { default } from './category';
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { createElement, Component } from 'react';

export default class Product extends Component {
render() {
return <div>Product Page Stub</div>;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* @RootComponent
* description = 'Basic Product Page'
* pageTypes = PRODUCT
*/

export { default } from './Product';

0 comments on commit f0bc33d

Please sign in to comment.