0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 19:17:48 +01:00
wagtail/client/template/component.mst
2017-05-13 23:53:10 +03:00

14 lines
177 B
Plaintext

import React from 'react';
const {{ name }} = () => {
return (
<div className="c-{{ slug }}">
</div>
);
};
{{ name }}.propTypes = {
};
export default {{ name }};