mirror of
https://github.com/strapi/strapi.git
synced 2025-11-10 23:29:33 +00:00
22 lines
309 B
JavaScript
22 lines
309 B
JavaScript
|
|
/**
|
||
|
|
*
|
||
|
|
* PluginLeftMenu
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
import React from 'react';
|
||
|
|
|
||
|
|
|
||
|
|
import styles from './styles.scss';
|
||
|
|
|
||
|
|
function PluginLeftMenu() {
|
||
|
|
const sayHi = () => console.log('ok');
|
||
|
|
return (
|
||
|
|
<div className={styles.pluginLeftMenu}>
|
||
|
|
<div onClick={sayHi}>kjkjkj</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default PluginLeftMenu;
|