mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-29 02:54:49 +00:00
16 lines
262 B
Text
16 lines
262 B
Text
|
|
import React, { Component, PropTypes } from 'react';
|
||
|
|
|
||
|
|
export default class {{ name }} extends Component {
|
||
|
|
constructor(props) {
|
||
|
|
super(props);
|
||
|
|
this.state = {};
|
||
|
|
}
|
||
|
|
|
||
|
|
render() {
|
||
|
|
return (
|
||
|
|
<div className="c-{{ slug }}">
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|