mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-03-16 22:10:28 +00:00
13 lines
177 B
Text
13 lines
177 B
Text
import React from 'react';
|
|
|
|
const {{ name }} = () => {
|
|
return (
|
|
<div className="c-{{ slug }}">
|
|
</div>
|
|
);
|
|
};
|
|
|
|
{{ name }}.propTypes = {
|
|
};
|
|
|
|
export default {{ name }};
|