mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-03-22 17:00:24 +00:00
15 lines
262 B
Text
15 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>
|
|
);
|
|
}
|
|
}
|