mirror of
https://github.com/wagtail/wagtail.git
synced 2024-12-01 11:41:20 +01:00
14f02a0b50
Thanks to @justinvdm for the help Merges: #2275
16 lines
262 B
Plaintext
16 lines
262 B
Plaintext
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>
|
|
);
|
|
}
|
|
}
|