21 lines
340 B
JavaScript
Raw Normal View History

/**
*
* PluginLeftMenu
*
*/
import React from 'react';
2017-07-06 16:18:43 +02:00
import PluginLeftMenuHeader from 'components/PluginLeftMenuHeader';
import styles from './styles.scss';
function PluginLeftMenu() {
return (
2017-07-06 16:18:43 +02:00
<div className={`${styles.pluginLeftMenu} col-md-3`}>
<PluginLeftMenuHeader />
</div>
);
}
export default PluginLeftMenu;