mirror of
https://github.com/strapi/strapi.git
synced 2025-08-04 06:49:16 +00:00
21 lines
254 B
JavaScript
21 lines
254 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
* Plugin
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
|
||
|
|
||
|
class Plugin extends React.Component { // eslint-disable-line react/prefer-stateless-function
|
||
|
render() {
|
||
|
return (
|
||
|
<div>
|
||
|
<p>Plugin</p>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Plugin;
|