mirror of https://github.com/Nofated095/blog
11 lines
324 B
React
11 lines
324 B
React
|
const { Component } = require('inferno');
|
||
|
const Categories = require('hexo-component-inferno/lib/view/widget/categories');
|
||
|
|
||
|
module.exports = class extends Component {
|
||
|
render() {
|
||
|
const { site, page, helper } = this.props;
|
||
|
|
||
|
return <Categories.Cacheable site={site} page={page} helper={helper} />;
|
||
|
}
|
||
|
};
|